vw_kafka_configurations
Creates, updates, deletes, gets or lists a vw_kafka_configurations
resource.
Overview
Name | vw_kafka_configurations |
Type | View |
Id | azure.purview.vw_kafka_configurations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
JSON_EXTRACT(properties, '$.consumerGroup') as "consumer_group",
JSON_EXTRACT(properties, '$.credentials') as "credentials",
JSON_EXTRACT(properties, '$.eventHubPartitionId') as "event_hub_partition_id",
JSON_EXTRACT(properties, '$.eventHubResourceId') as "event_hub_resource_id",
JSON_EXTRACT(properties, '$.eventHubType') as "event_hub_type",
JSON_EXTRACT(properties, '$.eventStreamingState') as "event_streaming_state",
JSON_EXTRACT(properties, '$.eventStreamingType') as "event_streaming_type",
subscriptionId,
resourceGroupName,
accountName,
kafkaConfigurationName
FROM azure.purview.kafka_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
json_extract_path_text(properties, '$.consumerGroup') as "consumer_group",
json_extract_path_text(properties, '$.credentials') as "credentials",
json_extract_path_text(properties, '$.eventHubPartitionId') as "event_hub_partition_id",
json_extract_path_text(properties, '$.eventHubResourceId') as "event_hub_resource_id",
json_extract_path_text(properties, '$.eventHubType') as "event_hub_type",
json_extract_path_text(properties, '$.eventStreamingState') as "event_streaming_state",
json_extract_path_text(properties, '$.eventStreamingType') as "event_streaming_type",
subscriptionId,
resourceGroupName,
accountName,
kafkaConfigurationName
FROM azure.purview.kafka_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';