vw_configuration_group_values
Creates, updates, deletes, gets or lists a vw_configuration_group_values
resource.
Overview
Name | vw_configuration_group_values |
Type | View |
Id | azure.hybrid_network.vw_configuration_group_values |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.publisherName') as "publisher_name",
JSON_EXTRACT(properties, '$.publisherScope') as "publisher_scope",
JSON_EXTRACT(properties, '$.configurationGroupSchemaName') as "configuration_group_schema_name",
JSON_EXTRACT(properties, '$.configurationGroupSchemaOfferingLocation') as "configuration_group_schema_offering_location",
JSON_EXTRACT(properties, '$.configurationGroupSchemaResourceReference') as "configuration_group_schema_resource_reference",
JSON_EXTRACT(properties, '$.configurationType') as "configuration_type",
subscriptionId,
resourceGroupName,
configurationGroupValueName
FROM azure.hybrid_network.configuration_group_values
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.publisherName') as "publisher_name",
json_extract_path_text(properties, '$.publisherScope') as "publisher_scope",
json_extract_path_text(properties, '$.configurationGroupSchemaName') as "configuration_group_schema_name",
json_extract_path_text(properties, '$.configurationGroupSchemaOfferingLocation') as "configuration_group_schema_offering_location",
json_extract_path_text(properties, '$.configurationGroupSchemaResourceReference') as "configuration_group_schema_resource_reference",
json_extract_path_text(properties, '$.configurationType') as "configuration_type",
subscriptionId,
resourceGroupName,
configurationGroupValueName
FROM azure.hybrid_network.configuration_group_values
WHERE subscriptionId = 'replace-me';