events
Creates, updates, deletes, gets or lists a events
resource.
Overview
Name | events |
Type | Resource |
Id | azure.data_replication.events |
Fields
- vw_events
- events
Name | Datatype | Description |
---|---|---|
id | text | Gets or sets the Id of the resource. |
name | text | Gets or sets the name of the resource. |
description | text | field from the properties object |
correlation_id | text | field from the properties object |
custom_properties | text | field from the properties object |
eventName | text | field from the properties object |
event_name | text | field from the properties object |
event_type | text | field from the properties object |
health_errors | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resource_name | text | field from the properties object |
resource_type | text | field from the properties object |
severity | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
time_of_occurrence | text | field from the properties object |
type | text | Gets or sets the type of the resource. |
vaultName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the Id of the resource. |
name | string | Gets or sets the name of the resource. |
properties | object | Event model properties. |
systemData | object | System data required to be defined for Azure resources. |
type | string | Gets or sets the type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | eventName, resourceGroupName, subscriptionId, vaultName | Gets the details of the event. |
list | SELECT | resourceGroupName, subscriptionId, vaultName | Gets the list of events in the given vault. |
SELECT
examples
Gets the list of events in the given vault.
- vw_events
- events
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 }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_replication.events
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';