vw_schema_registries
Creates, updates, deletes, gets or lists a vw_schema_registries
resource.
Overview
Name | vw_schema_registries |
Type | View |
Id | azure.device_registry.vw_schema_registries |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.uuid') as "uuid",
JSON_EXTRACT(properties, '$.namespace') as "namespace",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.storageAccountContainerUrl') as "storage_account_container_url",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
schemaRegistryName
FROM azure.device_registry.schema_registries
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.uuid') as "uuid",
json_extract_path_text(properties, '$.namespace') as "namespace",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.storageAccountContainerUrl') as "storage_account_container_url",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
schemaRegistryName
FROM azure.device_registry.schema_registries
WHERE subscriptionId = 'replace-me';