WebHookEventSubscriptionDestinationProperties Class
Information about the webhook destination properties for an event subscription.
Constructor
WebHookEventSubscriptionDestinationProperties(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
endpoint_url
|
The URL that represents the endpoint of the destination of an event subscription. |
|
endpoint_base_url
|
The base URL that represents the endpoint of the destination of an event subscription. |
|
max_events_per_batch
|
Maximum number of events per batch. |
|
preferred_batch_size_in_kilobytes
|
Preferred batch size in Kilobytes. |
|
azure_active_directory_tenant_id
|
The Microsoft Entra ID Tenant ID to get the access token that will be included as the bearer token in delivery requests. |
|
azure_active_directory_application_id_or_uri
|
The Microsoft Entra ID Application ID or URI to get the access token that will be included as the bearer token in delivery requests. |
|
delivery_attribute_mappings
|
Delivery attribute details. |
|
minimum_tls_version_allowed
|
str or
TlsVersion
Minimum TLS version that should be supported by webhook endpoint. Known values are: "1.0", "1.1", and "1.2". |
Attributes
azure_active_directory_application_id_or_uri
The Microsoft Entra ID Application ID or URI to get the access token that will be included as the bearer token in delivery requests.
azure_active_directory_application_id_or_uri: str | None
azure_active_directory_tenant_id
The Microsoft Entra ID Tenant ID to get the access token that will be included as the bearer token in delivery requests.
azure_active_directory_tenant_id: str | None
delivery_attribute_mappings
Delivery attribute details.
delivery_attribute_mappings: list['_models.DeliveryAttributeMapping'] | None
endpoint_base_url
The base URL that represents the endpoint of the destination of an event subscription.
endpoint_base_url: str | None
endpoint_url
The URL that represents the endpoint of the destination of an event subscription.
endpoint_url: str | None
max_events_per_batch
Maximum number of events per batch.
max_events_per_batch: int | None
minimum_tls_version_allowed
"1.0", "1.1", and "1.2".
minimum_tls_version_allowed: str | _models.TlsVersion | None
preferred_batch_size_in_kilobytes
Preferred batch size in Kilobytes.
preferred_batch_size_in_kilobytes: int | None