Skip to main content

webhooks_callback_configs

Creates, updates, deletes, gets or lists a webhooks_callback_configs resource.

Overview

Namewebhooks_callback_configs
TypeResource
Idazure.container_registry.webhooks_callback_configs

Fields

NameDatatypeDescription
customHeadersobjectCustom headers that will be added to the webhook notifications.
serviceUristringThe service URI for the webhook to post notifications.

Methods

NameAccessible byRequired ParamsDescription
getSELECTregistryName, resourceGroupName, subscriptionId, webhookNameGets 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 }}';