Skip to main content

webhooks_events

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

Overview

Namewebhooks_events
TypeResource
Idazure.container_registry.webhooks_events

Fields

The following fields are returned by SELECT queries:

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

NameDatatypeDescription
idstringThe event ID.
eventRequestMessageobjectThe event request message sent to the service URI.
eventResponseMessageobjectThe event response message received from the service URI.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, registryName, webhookNameLists 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.

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

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
;