vw_hubs
Creates, updates, deletes, gets or lists a vw_hubs
resource.
Overview
Name | vw_hubs |
Type | View |
Id | azure_extras.customer_insights.vw_hubs |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.apiEndpoint') as "api_endpoint",
JSON_EXTRACT(properties, '$.webEndpoint') as "web_endpoint",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.tenantFeatures') as "tenant_features",
JSON_EXTRACT(properties, '$.hubBillingInfo') as "hub_billing_info",
subscriptionId,
resourceGroupName,
hubName
FROM azure_extras.customer_insights.hubs
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.apiEndpoint') as "api_endpoint",
json_extract_path_text(properties, '$.webEndpoint') as "web_endpoint",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.tenantFeatures') as "tenant_features",
json_extract_path_text(properties, '$.hubBillingInfo') as "hub_billing_info",
subscriptionId,
resourceGroupName,
hubName
FROM azure_extras.customer_insights.hubs
WHERE subscriptionId = 'replace-me';