Skip to main content

vw_solutions

Creates, updates, deletes, gets or lists a vw_solutions resource.

Overview

Namevw_solutions
TypeView
Idazure.migrate_projects.vw_solutions

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
type as type,
etag as etag,
JSON_EXTRACT(properties, '$.tool') as "tool",
JSON_EXTRACT(properties, '$.purpose') as "purpose",
JSON_EXTRACT(properties, '$.goal') as "goal",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.cleanupState') as "cleanup_state",
JSON_EXTRACT(properties, '$.summary') as "summary",
JSON_EXTRACT(properties, '$.details') as "details",
subscriptionId,
resourceGroupName,
migrateProjectName,
solutionName
FROM azure.migrate_projects.solutions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND migrateProjectName = 'replace-me' AND solutionName = 'replace-me';