Skip to main content

vw_source_controls

Creates, updates, deletes, gets or lists a vw_source_controls resource.

Overview

Namevw_source_controls
TypeView
Idazure.automation.vw_source_controls

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
JSON_EXTRACT(properties, '$.repoUrl') as "repo_url",
JSON_EXTRACT(properties, '$.branch') as "branch",
JSON_EXTRACT(properties, '$.folderPath') as "folder_path",
JSON_EXTRACT(properties, '$.autoSync') as "auto_sync",
JSON_EXTRACT(properties, '$.publishRunbook') as "publish_runbook",
JSON_EXTRACT(properties, '$.sourceType') as "source_type",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.creationTime') as "creation_time",
JSON_EXTRACT(properties, '$.lastModifiedTime') as "last_modified_time",
subscriptionId,
resourceGroupName,
automationAccountName,
sourceControlName
FROM azure.automation.source_controls
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me';