vw_dsc_configurations
Creates, updates, deletes, gets or lists a vw_dsc_configurations
resource.
Overview
Name | vw_dsc_configurations |
Type | View |
Id | azure.automation.vw_dsc_configurations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
etag as etag,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.jobCount') as "job_count",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
JSON_EXTRACT(properties, '$.source') as "source",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.logVerbose') as "log_verbose",
JSON_EXTRACT(properties, '$.creationTime') as "creation_time",
JSON_EXTRACT(properties, '$.lastModifiedTime') as "last_modified_time",
JSON_EXTRACT(properties, '$.nodeConfigurationCount') as "node_configuration_count",
JSON_EXTRACT(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
automationAccountName,
configurationName
FROM azure.automation.dsc_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me';
SELECT
location as location,
etag as etag,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.jobCount') as "job_count",
json_extract_path_text(properties, '$.parameters') as "parameters",
json_extract_path_text(properties, '$.source') as "source",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.logVerbose') as "log_verbose",
json_extract_path_text(properties, '$.creationTime') as "creation_time",
json_extract_path_text(properties, '$.lastModifiedTime') as "last_modified_time",
json_extract_path_text(properties, '$.nodeConfigurationCount') as "node_configuration_count",
json_extract_path_text(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
automationAccountName,
configurationName
FROM azure.automation.dsc_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me';