vw_migration_services
Creates, updates, deletes, gets or lists a vw_migration_services
resource.
Overview
Name | vw_migration_services |
Type | View |
Id | azure.data_migration.vw_migration_services |
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,
tags as tags,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.integrationRuntimeState') as "integration_runtime_state",
subscriptionId,
resourceGroupName,
migrationServiceName
FROM azure.data_migration.migration_services
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
tags as tags,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.integrationRuntimeState') as "integration_runtime_state",
subscriptionId,
resourceGroupName,
migrationServiceName
FROM azure.data_migration.migration_services
WHERE subscriptionId = 'replace-me';