Skip to main content

replication_events

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

Overview

Namereplication_events
TypeResource
Idazure.recovery_services_site_recovery.replication_events

Fields

NameDatatypeDescription
idtextResource Id
nametextResource Name
descriptiontextfield from the properties object
affected_object_correlation_idtextfield from the properties object
affected_object_friendly_nametextfield from the properties object
eventNametextfield from the properties object
event_codetextfield from the properties object
event_specific_detailstextfield from the properties object
event_typetextfield from the properties object
fabric_idtextfield from the properties object
health_errorstextfield from the properties object
locationtextResource Location
provider_specific_detailstextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
severitytextfield from the properties object
subscriptionIdtextfield from the properties object
time_of_occurrencetextfield from the properties object
typetextResource Type

Methods

NameAccessible byRequired ParamsDescription
getSELECTeventName, resourceGroupName, resourceName, subscriptionIdThe operation to get the details of an Azure Site recovery event.
listSELECTresourceGroupName, resourceName, subscriptionIdGets the list of Azure Site Recovery events for the vault.

SELECT examples

Gets the list of Azure Site Recovery events for the vault.

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 }}';