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
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | |
name | string | |
properties | object | Database Migration Base Resource properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , migrationServiceName , subscriptionId | Retrieve 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.
Name | Datatype | Description |
---|---|---|
migrationServiceName | string | Name of the Migration Service. |
resourceGroupName | string | Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
subscriptionId | string | Subscription ID that identifies an Azure subscription. |
SELECT
examples
- list
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
;