vw_publishers
Creates, updates, deletes, gets or lists a vw_publishers
resource.
Overview
Name | vw_publishers |
Type | View |
Id | azure.hybrid_network.vw_publishers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.scope') as "scope",
subscriptionId,
resourceGroupName,
publisherName
FROM azure.hybrid_network.publishers
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.scope') as "scope",
subscriptionId,
resourceGroupName,
publisherName
FROM azure.hybrid_network.publishers
WHERE subscriptionId = 'replace-me';