vw_scope_assignments
Creates, updates, deletes, gets or lists a vw_scope_assignments
resource.
Overview
Name | vw_scope_assignments |
Type | View |
Id | azure.managed_network.vw_scope_assignments |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.assignedManagedNetwork') as "assigned_managed_network",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.etag') as "etag",
scope,
scopeAssignmentName
FROM azure.managed_network.scope_assignments
WHERE scope = 'replace-me';
SELECT
json_extract_path_text(properties, '$.assignedManagedNetwork') as "assigned_managed_network",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.etag') as "etag",
scope,
scopeAssignmentName
FROM azure.managed_network.scope_assignments
WHERE scope = 'replace-me';