vw_connections
Creates, updates, deletes, gets or lists a vw_connections
resource.
Overview
Name | vw_connections |
Type | View |
Id | azure.automation.vw_connections |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.connectionType') as "connection_type",
JSON_EXTRACT(properties, '$.fieldDefinitionValues') as "field_definition_values",
JSON_EXTRACT(properties, '$.creationTime') as "creation_time",
JSON_EXTRACT(properties, '$.lastModifiedTime') as "last_modified_time",
JSON_EXTRACT(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
automationAccountName,
connectionName
FROM azure.automation.connections
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.connectionType') as "connection_type",
json_extract_path_text(properties, '$.fieldDefinitionValues') as "field_definition_values",
json_extract_path_text(properties, '$.creationTime') as "creation_time",
json_extract_path_text(properties, '$.lastModifiedTime') as "last_modified_time",
json_extract_path_text(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
automationAccountName,
connectionName
FROM azure.automation.connections
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me';