vw_configuration_group_schemas
Creates, updates, deletes, gets or lists a vw_configuration_group_schemas
resource.
Overview
Name | vw_configuration_group_schemas |
Type | View |
Id | azure.hybrid_network.vw_configuration_group_schemas |
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, '$.versionState') as "version_state",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.schemaDefinition') as "schema_definition",
subscriptionId,
resourceGroupName,
publisherName,
configurationGroupSchemaName
FROM azure.hybrid_network.configuration_group_schemas
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND publisherName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.versionState') as "version_state",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.schemaDefinition') as "schema_definition",
subscriptionId,
resourceGroupName,
publisherName,
configurationGroupSchemaName
FROM azure.hybrid_network.configuration_group_schemas
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND publisherName = 'replace-me';