vw_tenant_configuration_sync_states
Creates, updates, deletes, gets or lists a vw_tenant_configuration_sync_states
resource.
Overview
Name | vw_tenant_configuration_sync_states |
Type | View |
Id | azure.api_management.vw_tenant_configuration_sync_states |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.branch') as "branch",
JSON_EXTRACT(properties, '$.commitId') as "commit_id",
JSON_EXTRACT(properties, '$.isExport') as "is_export",
JSON_EXTRACT(properties, '$.isSynced') as "is_synced",
JSON_EXTRACT(properties, '$.isGitEnabled') as "is_git_enabled",
JSON_EXTRACT(properties, '$.syncDate') as "sync_date",
JSON_EXTRACT(properties, '$.configurationChangeDate') as "configuration_change_date",
JSON_EXTRACT(properties, '$.lastOperationId') as "last_operation_id",
subscriptionId,
resourceGroupName,
serviceName,
configurationName
FROM azure.api_management.tenant_configuration_sync_states
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND configurationName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.branch') as "branch",
json_extract_path_text(properties, '$.commitId') as "commit_id",
json_extract_path_text(properties, '$.isExport') as "is_export",
json_extract_path_text(properties, '$.isSynced') as "is_synced",
json_extract_path_text(properties, '$.isGitEnabled') as "is_git_enabled",
json_extract_path_text(properties, '$.syncDate') as "sync_date",
json_extract_path_text(properties, '$.configurationChangeDate') as "configuration_change_date",
json_extract_path_text(properties, '$.lastOperationId') as "last_operation_id",
subscriptionId,
resourceGroupName,
serviceName,
configurationName
FROM azure.api_management.tenant_configuration_sync_states
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND configurationName = 'replace-me';