webhooks_callback_configs
Creates, updates, deletes, gets or lists a webhooks_callback_configs
resource.
Overview
Name | webhooks_callback_configs |
Type | Resource |
Id | azure.container_registry.webhooks_callback_configs |
Fields
Name | Datatype | Description |
---|---|---|
customHeaders | object | Custom headers that will be added to the webhook notifications. |
serviceUri | string | The service URI for the webhook to post notifications. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | registryName, resourceGroupName, subscriptionId, webhookName | Gets the configuration of service URI and custom headers for the webhook. |
SELECT
examples
Gets the configuration of service URI and custom headers for the webhook.
SELECT
customHeaders,
serviceUri
FROM azure.container_registry.webhooks_callback_configs
WHERE registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webhookName = '{{ webhookName }}';