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
The following fields are returned by SELECT queries:
- get
The request was successful; the request was well-formed and received properly.
| 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, registryName, webhookName | Gets 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.
| Name | Datatype | Description |
|---|---|---|
registryName | string | The name of the container registry. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
webhookName | string | The name of the webhook. |
SELECT examples
- get
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
;