vw_connector_mappings
Creates, updates, deletes, gets or lists a vw_connector_mappings
resource.
Overview
Name | vw_connector_mappings |
Type | View |
Id | azure_extras.customer_insights.vw_connector_mappings |
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, '$.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';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.connectorName') as "connector_name",
json_extract_path_text(properties, '$.connectorType') as "connector_type",
json_extract_path_text(properties, '$.created') as "created",
json_extract_path_text(properties, '$.lastModified') as "last_modified",
json_extract_path_text(properties, '$.entityType') as "entity_type",
json_extract_path_text(properties, '$.entityTypeName') as "entity_type_name",
json_extract_path_text(properties, '$.connectorMappingName') as "connector_mapping_name",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.dataFormatId') as "data_format_id",
json_extract_path_text(properties, '$.mappingProperties') as "mapping_properties",
json_extract_path_text(properties, '$.nextRunTime') as "next_run_time",
json_extract_path_text(properties, '$.runId') as "run_id",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(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';