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

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, registryName, webhookNameGets the configuration of service URI and custom headers for the webhook.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
registryNamestringThe name of the container registry.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
webhookNamestringThe name of 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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
AND webhookName = '{{ webhookName }}' -- required
;