vw_connectors
Creates, updates, deletes, gets or lists a vw_connectors
resource.
Overview
Name | vw_connectors |
Type | View |
Id | azure_extras.customer_insights.vw_connectors |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.connectorId') as "connector_id",
JSON_EXTRACT(properties, '$.connectorName') as "connector_name",
JSON_EXTRACT(properties, '$.connectorType') as "connector_type",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.connectorProperties') as "connector_properties",
JSON_EXTRACT(properties, '$.created') as "created",
JSON_EXTRACT(properties, '$.lastModified') as "last_modified",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.tenantId') as "tenant_id",
JSON_EXTRACT(properties, '$.isInternal') as "is_internal",
subscriptionId,
resourceGroupName,
hubName,
connectorName
FROM azure_extras.customer_insights.connectors
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hubName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.connectorId') as "connector_id",
json_extract_path_text(properties, '$.connectorName') as "connector_name",
json_extract_path_text(properties, '$.connectorType') as "connector_type",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.connectorProperties') as "connector_properties",
json_extract_path_text(properties, '$.created') as "created",
json_extract_path_text(properties, '$.lastModified') as "last_modified",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.tenantId') as "tenant_id",
json_extract_path_text(properties, '$.isInternal') as "is_internal",
subscriptionId,
resourceGroupName,
hubName,
connectorName
FROM azure_extras.customer_insights.connectors
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hubName = 'replace-me';