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

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTregistryName, resourceGroupName, subscriptionId, webhookNameLists recent events for the specified webhook.

SELECT examples

Lists recent events for the specified webhook.

SELECT
id,
eventRequestMessage,
eventResponseMessage
FROM azure.container_registry.webhooks_events
WHERE registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND webhookName = '{{ webhookName }}';