Skip to main content

vw_connector_mappings

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

Overview

Namevw_connector_mappings
TypeView
Idazure_extras.customer_insights.vw_connector_mappings

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, '$.connectorName') as "connector_name",
JSON_EXTRACT(properties, '$.connectorType') as "connector_type",
JSON_EXTRACT(properties, '$.created') as "created",
JSON_EXTRACT(properties, '$.lastModified') as "last_modified",
JSON_EXTRACT(properties, '$.entityType') as "entity_type",
JSON_EXTRACT(properties, '$.entityTypeName') as "entity_type_name",
JSON_EXTRACT(properties, '$.connectorMappingName') as "connector_mapping_name",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.dataFormatId') as "data_format_id",
JSON_EXTRACT(properties, '$.mappingProperties') as "mapping_properties",
JSON_EXTRACT(properties, '$.nextRunTime') as "next_run_time",
JSON_EXTRACT(properties, '$.runId') as "run_id",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.tenantId') as "tenant_id",
subscriptionId,
resourceGroupName,
hubName,
connectorName,
mappingName
FROM azure_extras.customer_insights.connector_mappings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hubName = 'replace-me' AND connectorName = 'replace-me';