Skip to main content

vw_connectors

Creates, updates, deletes, gets or lists a vw_connectors resource.

Overview

Namevw_connectors
TypeView
Idazure_extras.customer_insights.vw_connectors

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

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';