vw_services
Creates, updates, deletes, gets or lists a vw_services
resource.
Overview
Name | vw_services |
Type | View |
Id | azure.storage_sync.vw_services |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.incomingTrafficPolicy') as "incoming_traffic_policy",
JSON_EXTRACT(properties, '$.storageSyncServiceStatus') as "storage_sync_service_status",
JSON_EXTRACT(properties, '$.storageSyncServiceUid') as "storage_sync_service_uid",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.useIdentity') as "use_identity",
JSON_EXTRACT(properties, '$.lastWorkflowId') as "last_workflow_id",
JSON_EXTRACT(properties, '$.lastOperationName') as "last_operation_name",
JSON_EXTRACT(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
subscriptionId,
resourceGroupName,
storageSyncServiceName
FROM azure.storage_sync.services
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.incomingTrafficPolicy') as "incoming_traffic_policy",
json_extract_path_text(properties, '$.storageSyncServiceStatus') as "storage_sync_service_status",
json_extract_path_text(properties, '$.storageSyncServiceUid') as "storage_sync_service_uid",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.useIdentity') as "use_identity",
json_extract_path_text(properties, '$.lastWorkflowId') as "last_workflow_id",
json_extract_path_text(properties, '$.lastOperationName') as "last_operation_name",
json_extract_path_text(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
subscriptionId,
resourceGroupName,
storageSyncServiceName
FROM azure.storage_sync.services
WHERE subscriptionId = 'replace-me';