webhooks_events
Creates, updates, deletes, gets or lists a webhooks_events
resource.
Overview
Name | webhooks_events |
Type | Resource |
Id | azure.container_registry.webhooks_events |
Fields
The following fields are returned by SELECT
queries:
- list
The request was successful; the request was well-formed and received properly.
Name | Datatype | Description |
---|---|---|
id | string | The event ID. |
eventRequestMessage | object | The event request message sent to the service URI. |
eventResponseMessage | object | The event response message received from the service URI. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , registryName , webhookName | Lists recent events for the specified 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
- list
Lists recent events for the specified webhook.
SELECT
id,
eventRequestMessage,
eventResponseMessage
FROM azure.container_registry.webhooks_events
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
AND webhookName = '{{ webhookName }}' -- required
;