vw_bots
Creates, updates, deletes, gets or lists a vw_bots
resource.
Overview
Name | vw_bots |
Type | View |
Id | azure_extras.health_bot.vw_bots |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
sku as sku,
identity as identity,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.botManagementPortalLink') as "bot_management_portal_link",
JSON_EXTRACT(properties, '$.keyVaultProperties') as "key_vault_properties",
subscriptionId,
resourceGroupName,
botName
FROM azure_extras.health_bot.bots
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
sku as sku,
identity as identity,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.botManagementPortalLink') as "bot_management_portal_link",
json_extract_path_text(properties, '$.keyVaultProperties') as "key_vault_properties",
subscriptionId,
resourceGroupName,
botName
FROM azure_extras.health_bot.bots
WHERE subscriptionId = 'replace-me';