vw_replication_networks
Creates, updates, deletes, gets or lists a vw_replication_networks
resource.
Overview
Name | vw_replication_networks |
Type | View |
Id | azure.recovery_services_site_recovery.vw_replication_networks |
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, '$.fabricType') as "fabric_type",
JSON_EXTRACT(properties, '$.subnets') as "subnets",
JSON_EXTRACT(properties, '$.friendlyName') as "friendly_name",
JSON_EXTRACT(properties, '$.networkType') as "network_type",
subscriptionId,
resourceGroupName,
resourceName,
fabricName,
networkName
FROM azure.recovery_services_site_recovery.replication_networks
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, '$.fabricType') as "fabric_type",
json_extract_path_text(properties, '$.subnets') as "subnets",
json_extract_path_text(properties, '$.friendlyName') as "friendly_name",
json_extract_path_text(properties, '$.networkType') as "network_type",
subscriptionId,
resourceGroupName,
resourceName,
fabricName,
networkName
FROM azure.recovery_services_site_recovery.replication_networks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';