Skip to main content

vw_broker_listeners

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

Overview

Namevw_broker_listeners
TypeView
Idazure.iot_mq.vw_broker_listeners

Fields

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

SQL Definition

SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
JSON_EXTRACT(properties, '$.authenticationEnabled') as "authentication_enabled",
JSON_EXTRACT(properties, '$.authorizationEnabled') as "authorization_enabled",
JSON_EXTRACT(properties, '$.brokerRef') as "broker_ref",
JSON_EXTRACT(properties, '$.nodePort') as "node_port",
JSON_EXTRACT(properties, '$.port') as "port",
JSON_EXTRACT(properties, '$.serviceName') as "service_name",
JSON_EXTRACT(properties, '$.serviceType') as "service_type",
JSON_EXTRACT(properties, '$.tls') as "tls",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
mqName,
brokerName,
listenerName
FROM azure.iot_mq.broker_listeners
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND mqName = 'replace-me' AND brokerName = 'replace-me';