vw_hybrid_runbook_workers
Creates, updates, deletes, gets or lists a vw_hybrid_runbook_workers
resource.
Overview
Name | vw_hybrid_runbook_workers |
Type | View |
Id | azure.automation.vw_hybrid_runbook_workers |
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, '$.ip') as "ip",
JSON_EXTRACT(properties, '$.registeredDateTime') as "registered_date_time",
JSON_EXTRACT(properties, '$.lastSeenDateTime') as "last_seen_date_time",
JSON_EXTRACT(properties, '$.vmResourceId') as "vm_resource_id",
JSON_EXTRACT(properties, '$.workerType') as "worker_type",
JSON_EXTRACT(properties, '$.workerName') as "worker_name",
subscriptionId,
resourceGroupName,
automationAccountName,
hybridRunbookWorkerGroupName,
hybridRunbookWorkerId
FROM azure.automation.hybrid_runbook_workers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me' AND hybridRunbookWorkerGroupName = 'replace-me';
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
json_extract_path_text(properties, '$.ip') as "ip",
json_extract_path_text(properties, '$.registeredDateTime') as "registered_date_time",
json_extract_path_text(properties, '$.lastSeenDateTime') as "last_seen_date_time",
json_extract_path_text(properties, '$.vmResourceId') as "vm_resource_id",
json_extract_path_text(properties, '$.workerType') as "worker_type",
json_extract_path_text(properties, '$.workerName') as "worker_name",
subscriptionId,
resourceGroupName,
automationAccountName,
hybridRunbookWorkerGroupName,
hybridRunbookWorkerId
FROM azure.automation.hybrid_runbook_workers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me' AND hybridRunbookWorkerGroupName = 'replace-me';