vw_apps
Creates, updates, deletes, gets or lists a vw_apps
resource.
Overview
Name | vw_apps |
Type | View |
Id | azure.iot_central.vw_apps |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
sku as sku,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.applicationId') as "application_id",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.subdomain') as "subdomain",
JSON_EXTRACT(properties, '$.template') as "template",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.publicNetworkAccess') as "public_network_access",
JSON_EXTRACT(properties, '$.networkRuleSets') as "network_rule_sets",
JSON_EXTRACT(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.iot_central.apps
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
sku as sku,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.applicationId') as "application_id",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.subdomain') as "subdomain",
json_extract_path_text(properties, '$.template') as "template",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.publicNetworkAccess') as "public_network_access",
json_extract_path_text(properties, '$.networkRuleSets') as "network_rule_sets",
json_extract_path_text(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.iot_central.apps
WHERE subscriptionId = 'replace-me';