vw_replication_fabrics
Creates, updates, deletes, gets or lists a vw_replication_fabrics
resource.
Overview
Name | vw_replication_fabrics |
Type | View |
Id | azure.recovery_services_site_recovery.vw_replication_fabrics |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
JSON_EXTRACT(properties, '$.friendlyName') as "friendly_name",
JSON_EXTRACT(properties, '$.encryptionDetails') as "encryption_details",
JSON_EXTRACT(properties, '$.rolloverEncryptionDetails') as "rollover_encryption_details",
JSON_EXTRACT(properties, '$.internalIdentifier') as "internal_identifier",
JSON_EXTRACT(properties, '$.bcdrState') as "bcdr_state",
JSON_EXTRACT(properties, '$.customDetails') as "custom_details",
JSON_EXTRACT(properties, '$.healthErrorDetails') as "health_error_details",
JSON_EXTRACT(properties, '$.health') as "health",
subscriptionId,
resourceGroupName,
resourceName,
fabricName
FROM azure.recovery_services_site_recovery.replication_fabrics
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.friendlyName') as "friendly_name",
json_extract_path_text(properties, '$.encryptionDetails') as "encryption_details",
json_extract_path_text(properties, '$.rolloverEncryptionDetails') as "rollover_encryption_details",
json_extract_path_text(properties, '$.internalIdentifier') as "internal_identifier",
json_extract_path_text(properties, '$.bcdrState') as "bcdr_state",
json_extract_path_text(properties, '$.customDetails') as "custom_details",
json_extract_path_text(properties, '$.healthErrorDetails') as "health_error_details",
json_extract_path_text(properties, '$.health') as "health",
subscriptionId,
resourceGroupName,
resourceName,
fabricName
FROM azure.recovery_services_site_recovery.replication_fabrics
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';