vw_hybrid_runbook_worker_groups
Creates, updates, deletes, gets or lists a vw_hybrid_runbook_worker_groups
resource.
Overview
Name | vw_hybrid_runbook_worker_groups |
Type | View |
Id | azure.automation.vw_hybrid_runbook_worker_groups |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
JSON_EXTRACT(properties, '$.groupType') as "group_type",
JSON_EXTRACT(properties, '$.credential') as "credential",
subscriptionId,
resourceGroupName,
automationAccountName,
hybridRunbookWorkerGroupName
FROM azure.automation.hybrid_runbook_worker_groups
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me';
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
json_extract_path_text(properties, '$.groupType') as "group_type",
json_extract_path_text(properties, '$.credential') as "credential",
subscriptionId,
resourceGroupName,
automationAccountName,
hybridRunbookWorkerGroupName
FROM azure.automation.hybrid_runbook_worker_groups
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me';