vw_solutions
Creates, updates, deletes, gets or lists a vw_solutions
resource.
Overview
Name | vw_solutions |
Type | View |
Id | azure.operations_management.vw_solutions |
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,
tags as tags,
plan as plan,
JSON_EXTRACT(properties, '$.workspaceResourceId') as "workspace_resource_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.containedResources') as "contained_resources",
JSON_EXTRACT(properties, '$.referencedResources') as "referenced_resources",
subscriptionId,
resourceGroupName,
solutionName
FROM azure.operations_management.solutions
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
plan as plan,
json_extract_path_text(properties, '$.workspaceResourceId') as "workspace_resource_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.containedResources') as "contained_resources",
json_extract_path_text(properties, '$.referencedResources') as "referenced_resources",
subscriptionId,
resourceGroupName,
solutionName
FROM azure.operations_management.solutions
WHERE subscriptionId = 'replace-me';