vw_management_associations
Creates, updates, deletes, gets or lists a vw_management_associations
resource.
Overview
Name | vw_management_associations |
Type | View |
Id | azure.operations_management.vw_management_associations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
JSON_EXTRACT(properties, '$.applicationId') as "application_id",
subscriptionId,
resourceGroupName,
providerName,
resourceType,
resourceName,
managementAssociationName
FROM azure.operations_management.management_associations
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.applicationId') as "application_id",
subscriptionId,
resourceGroupName,
providerName,
resourceType,
resourceName,
managementAssociationName
FROM azure.operations_management.management_associations
WHERE subscriptionId = 'replace-me';