vw_cloud_endpoints
Creates, updates, deletes, gets or lists a vw_cloud_endpoints
resource.
Overview
Name | vw_cloud_endpoints |
Type | View |
Id | azure.storage_sync.vw_cloud_endpoints |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.storageAccountResourceId') as "storage_account_resource_id",
JSON_EXTRACT(properties, '$.azureFileShareName') as "azure_file_share_name",
JSON_EXTRACT(properties, '$.storageAccountTenantId') as "storage_account_tenant_id",
JSON_EXTRACT(properties, '$.partnershipId') as "partnership_id",
JSON_EXTRACT(properties, '$.friendlyName') as "friendly_name",
JSON_EXTRACT(properties, '$.backupEnabled') as "backup_enabled",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.lastWorkflowId') as "last_workflow_id",
JSON_EXTRACT(properties, '$.lastOperationName') as "last_operation_name",
JSON_EXTRACT(properties, '$.changeEnumerationStatus') as "change_enumeration_status",
subscriptionId,
resourceGroupName,
storageSyncServiceName,
syncGroupName,
cloudEndpointName
FROM azure.storage_sync.cloud_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND storageSyncServiceName = 'replace-me' AND syncGroupName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.storageAccountResourceId') as "storage_account_resource_id",
json_extract_path_text(properties, '$.azureFileShareName') as "azure_file_share_name",
json_extract_path_text(properties, '$.storageAccountTenantId') as "storage_account_tenant_id",
json_extract_path_text(properties, '$.partnershipId') as "partnership_id",
json_extract_path_text(properties, '$.friendlyName') as "friendly_name",
json_extract_path_text(properties, '$.backupEnabled') as "backup_enabled",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
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, '$.changeEnumerationStatus') as "change_enumeration_status",
subscriptionId,
resourceGroupName,
storageSyncServiceName,
syncGroupName,
cloudEndpointName
FROM azure.storage_sync.cloud_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND storageSyncServiceName = 'replace-me' AND syncGroupName = 'replace-me';