vw_events_events
Creates, updates, deletes, gets or lists a vw_events_events
resource.
Overview
Name | vw_events_events |
Type | View |
Id | azure.migrate_projects.vw_events_events |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.instanceType') as "instance_type",
JSON_EXTRACT(properties, '$.errorCode') as "error_code",
JSON_EXTRACT(properties, '$.errorMessage') as "error_message",
JSON_EXTRACT(properties, '$.recommendation') as "recommendation",
JSON_EXTRACT(properties, '$.possibleCauses') as "possible_causes",
JSON_EXTRACT(properties, '$.solution') as "solution",
JSON_EXTRACT(properties, '$.clientRequestId') as "client_request_id",
subscriptionId,
resourceGroupName,
migrateProjectName,
eventName
FROM azure.migrate_projects.events_events
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND migrateProjectName = 'replace-me' AND eventName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.instanceType') as "instance_type",
json_extract_path_text(properties, '$.errorCode') as "error_code",
json_extract_path_text(properties, '$.errorMessage') as "error_message",
json_extract_path_text(properties, '$.recommendation') as "recommendation",
json_extract_path_text(properties, '$.possibleCauses') as "possible_causes",
json_extract_path_text(properties, '$.solution') as "solution",
json_extract_path_text(properties, '$.clientRequestId') as "client_request_id",
subscriptionId,
resourceGroupName,
migrateProjectName,
eventName
FROM azure.migrate_projects.events_events
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND migrateProjectName = 'replace-me' AND eventName = 'replace-me';