vw_broker_authentications
Creates, updates, deletes, gets or lists a vw_broker_authentications
resource.
Overview
Name | vw_broker_authentications |
Type | View |
Id | azure.iotoperations.vw_broker_authentications |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
extendedLocation as extended_location,
JSON_EXTRACT(properties, '$.authenticationMethods') as "authentication_methods",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
instanceName,
brokerName,
authenticationName
FROM azure.iotoperations.broker_authentications
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND instanceName = 'replace-me' AND brokerName = 'replace-me';
SELECT
extendedLocation as extended_location,
json_extract_path_text(properties, '$.authenticationMethods') as "authentication_methods",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
instanceName,
brokerName,
authenticationName
FROM azure.iotoperations.broker_authentications
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND instanceName = 'replace-me' AND brokerName = 'replace-me';