Skip to main content

migration_services_migrations

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

Overview

Namemigration_services_migrations
TypeResource
Idazure.data_migration.migration_services_migrations

Fields

NameDatatypeDescription
idstring
namestring
propertiesobjectDatabase Migration Base Resource properties.
systemDataobject
typestring

Methods

NameAccessible byRequired ParamsDescription
listSELECTmigrationServiceName, resourceGroupName, subscriptionIdRetrieve the List of database migrations attached to the service.

SELECT examples

Retrieve the List of database migrations attached to the service.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_migration.migration_services_migrations
WHERE migrationServiceName = '{{ migrationServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';