migration_services_migrations
Creates, updates, deletes, gets or lists a migration_services_migrations
resource.
Overview
Name | migration_services_migrations |
Type | Resource |
Id | azure.data_migration.migration_services_migrations |
Fields
Name | Datatype | Description |
---|---|---|
id | string | |
name | string | |
properties | object | Database Migration Base Resource properties. |
systemData | object | |
type | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | migrationServiceName, resourceGroupName, subscriptionId | Retrieve 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 }}';