thousandeyes-sdk-python/agents_api/docs/AlertIntegrationBase.md
2023-12-11 09:29:15 +00:00

1.5 KiB

AlertIntegrationBase

Properties

Name Type Description Notes
integration_id str Unique ID of the integration. [optional]
integration_name str Name of the integration. [optional]
integration_type AlertIntegrationType [optional]
target str Target URL of the integration. [optional]
auth_method str (PagerDuty only) Authentication method. [optional]
auth_user str (PagerDuty only) Authentication user. [optional]
auth_token str (PagerDuty only) Authentication token. [optional]
channel str (Slack only) Slack `#channel` or `@user`. [optional]

Example

from agents_api.models.alert_integration_base import AlertIntegrationBase

# TODO update the JSON string below
json = "{}"
# create an instance of AlertIntegrationBase from a JSON string
alert_integration_base_instance = AlertIntegrationBase.from_json(json)
# print the JSON string representation of the object
print AlertIntegrationBase.to_json()

# convert the object into a dict
alert_integration_base_dict = alert_integration_base_instance.to_dict()
# create an instance of AlertIntegrationBase from a dict
alert_integration_base_form_dict = alert_integration_base.from_dict(alert_integration_base_dict)

[Back to Model list] [Back to API list] [Back to README]