replication_events
Creates, updates, deletes, gets or lists a replication_events
resource.
Overview
Name | replication_events |
Type | Resource |
Id | azure.recovery_services_site_recovery.replication_events |
Fields
- vw_replication_events
- replication_events
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource Name |
description | text | field from the properties object |
affected_object_correlation_id | text | field from the properties object |
affected_object_friendly_name | text | field from the properties object |
eventName | text | field from the properties object |
event_code | text | field from the properties object |
event_specific_details | text | field from the properties object |
event_type | text | field from the properties object |
fabric_id | text | field from the properties object |
health_errors | text | field from the properties object |
location | text | Resource Location |
provider_specific_details | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
severity | text | field from the properties object |
subscriptionId | text | field from the properties object |
time_of_occurrence | text | field from the properties object |
type | text | Resource Type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | The properties of a monitoring event. |
type | string | Resource Type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | eventName, resourceGroupName, resourceName, subscriptionId | The operation to get the details of an Azure Site recovery event. |
list | SELECT | resourceGroupName, resourceName, subscriptionId | Gets the list of Azure Site Recovery events for the vault. |
SELECT
examples
Gets the list of Azure Site Recovery events for the vault.
- vw_replication_events
- replication_events
SELECT
id,
name,
description,
affected_object_correlation_id,
affected_object_friendly_name,
eventName,
event_code,
event_specific_details,
event_type,
fabric_id,
health_errors,
location,
provider_specific_details,
resourceGroupName,
resourceName,
severity,
subscriptionId,
time_of_occurrence,
type
FROM azure.recovery_services_site_recovery.vw_replication_events
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_events
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';