vw_source_control_sync_jobs
Creates, updates, deletes, gets or lists a vw_source_control_sync_jobs
resource.
Overview
Name | vw_source_control_sync_jobs |
Type | View |
Id | azure.automation.vw_source_control_sync_jobs |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
JSON_EXTRACT(properties, '$.sourceControlSyncJobId') as "source_control_sync_job_id",
JSON_EXTRACT(properties, '$.creationTime') as "creation_time",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.startTime') as "start_time",
JSON_EXTRACT(properties, '$.endTime') as "end_time",
JSON_EXTRACT(properties, '$.syncType') as "sync_type",
JSON_EXTRACT(properties, '$.exception') as "exception",
subscriptionId,
resourceGroupName,
automationAccountName,
sourceControlName,
sourceControlSyncJobId
FROM azure.automation.source_control_sync_jobs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me' AND sourceControlName = 'replace-me';
SELECT
id as id,
json_extract_path_text(properties, '$.sourceControlSyncJobId') as "source_control_sync_job_id",
json_extract_path_text(properties, '$.creationTime') as "creation_time",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.startTime') as "start_time",
json_extract_path_text(properties, '$.endTime') as "end_time",
json_extract_path_text(properties, '$.syncType') as "sync_type",
json_extract_path_text(properties, '$.exception') as "exception",
subscriptionId,
resourceGroupName,
automationAccountName,
sourceControlName,
sourceControlSyncJobId
FROM azure.automation.source_control_sync_jobs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me' AND sourceControlName = 'replace-me';