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

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring
namestring
propertiesobjectDatabase Migration Base Resource properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, migrationServiceName, subscriptionIdRetrieve the List of database migrations attached to the service.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
migrationServiceNamestringName of the Migration Service.
resourceGroupNamestringName of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
subscriptionIdstringSubscription ID that identifies an Azure subscription.

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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND migrationServiceName = '{{ migrationServiceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;