vw_broker_listeners
Creates, updates, deletes, gets or lists a vw_broker_listeners
resource.
Overview
Name | vw_broker_listeners |
Type | View |
Id | azure.iot_mq.vw_broker_listeners |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
json_extract_path_text(properties, '$.authenticationEnabled') as "authentication_enabled",
json_extract_path_text(properties, '$.authorizationEnabled') as "authorization_enabled",
json_extract_path_text(properties, '$.brokerRef') as "broker_ref",
json_extract_path_text(properties, '$.nodePort') as "node_port",
json_extract_path_text(properties, '$.port') as "port",
json_extract_path_text(properties, '$.serviceName') as "service_name",
json_extract_path_text(properties, '$.serviceType') as "service_type",
json_extract_path_text(properties, '$.tls') as "tls",
json_extract_path_text(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';