Skip to main content

events

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

Overview

Nameevents
TypeResource
Idazure.data_replication.events

Fields

NameDatatypeDescription
idtextGets or sets the Id of the resource.
nametextGets or sets the name of the resource.
descriptiontextfield from the properties object
correlation_idtextfield from the properties object
custom_propertiestextfield from the properties object
eventNametextfield from the properties object
event_nametextfield from the properties object
event_typetextfield from the properties object
health_errorstextfield from the properties object
resourceGroupNametextfield from the properties object
resource_nametextfield from the properties object
resource_typetextfield from the properties object
severitytextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
time_of_occurrencetextfield from the properties object
typetextGets or sets the type of the resource.
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTeventName, resourceGroupName, subscriptionId, vaultNameGets the details of the event.
listSELECTresourceGroupName, subscriptionId, vaultNameGets the list of events in the given vault.

SELECT examples

Gets the list of events in the given vault.

SELECT
id,
name,
description,
correlation_id,
custom_properties,
eventName,
event_name,
event_type,
health_errors,
resourceGroupName,
resource_name,
resource_type,
severity,
subscriptionId,
system_data,
time_of_occurrence,
type,
vaultName
FROM azure.data_replication.vw_events
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';