vw_fabrics
Creates, updates, deletes, gets or lists a vw_fabrics
resource.
Overview
Name | vw_fabrics |
Type | View |
Id | azure.data_replication.vw_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,
tags as tags,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.serviceEndpoint') as "service_endpoint",
JSON_EXTRACT(properties, '$.serviceResourceId') as "service_resource_id",
JSON_EXTRACT(properties, '$.health') as "health",
JSON_EXTRACT(properties, '$.healthErrors') as "health_errors",
JSON_EXTRACT(properties, '$.customProperties') as "custom_properties",
subscriptionId,
resourceGroupName,
fabricName
FROM azure.data_replication.fabrics
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
tags as tags,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.serviceEndpoint') as "service_endpoint",
json_extract_path_text(properties, '$.serviceResourceId') as "service_resource_id",
json_extract_path_text(properties, '$.health') as "health",
json_extract_path_text(properties, '$.healthErrors') as "health_errors",
json_extract_path_text(properties, '$.customProperties') as "custom_properties",
subscriptionId,
resourceGroupName,
fabricName
FROM azure.data_replication.fabrics
WHERE subscriptionId = 'replace-me';