Skip to main content

events

Creates, updates, deletes, gets or lists an events resource.

Overview

Nameevents
TypeResource
Idazure.data_replication.events

Fields

The following fields are returned by SELECT queries:

Returns Event Model on success.

NameDatatypeDescription
idstringGets or sets the Id of the resource.
namestringGets or sets the name of the resource.
propertiesobjectEvent model properties.
systemDataobjectSystem data required to be defined for Azure resources.
typestringGets or sets the type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, vaultName, eventNameGets the details of the event.
listselectsubscriptionId, resourceGroupName, vaultName$filter, continuationTokenGets the list of events in the given vault.

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
eventNamestringThe event name.
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.
vaultNamestringThe vault name.
$filterstringFilter string.
continuationTokenstringContinuation token.

SELECT examples

Gets the details of the event.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_replication.events
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND eventName = '{{ eventName }}' -- required
;