vw_cloud_connections
Creates, updates, deletes, gets or lists a vw_cloud_connections
resource.
Overview
Name | vw_cloud_connections |
Type | View |
Id | azure.hybrid_cloud.vw_cloud_connections |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
etag as etag,
tags as tags,
JSON_EXTRACT(properties, '$.cloudConnector') as "cloud_connector",
JSON_EXTRACT(properties, '$.remoteResourceId') as "remote_resource_id",
JSON_EXTRACT(properties, '$.virtualHub') as "virtual_hub",
JSON_EXTRACT(properties, '$.sharedKey') as "shared_key",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
cloudConnectionName
FROM azure.hybrid_cloud.cloud_connections
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
etag as etag,
tags as tags,
json_extract_path_text(properties, '$.cloudConnector') as "cloud_connector",
json_extract_path_text(properties, '$.remoteResourceId') as "remote_resource_id",
json_extract_path_text(properties, '$.virtualHub') as "virtual_hub",
json_extract_path_text(properties, '$.sharedKey') as "shared_key",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
cloudConnectionName
FROM azure.hybrid_cloud.cloud_connections
WHERE subscriptionId = 'replace-me';