accounts_customer_initiated_migrations
Creates, updates, deletes, gets or lists a accounts_customer_initiated_migrations
resource.
Overview
Name | accounts_customer_initiated_migrations |
Type | Resource |
Id | azure.storage.accounts_customer_initiated_migrations |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Migration Resource Id |
name | string | current value is 'default' for customer initiated migration |
properties | object | The properties of a storage account’s ongoing or enqueued migration. |
type | string | SrpAccountMigrationType in ARM contract which is 'accountMigrations' |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, migrationName, resourceGroupName, subscriptionId | Gets the status of the ongoing migration for the specified storage account. |
SELECT
examples
Gets the status of the ongoing migration for the specified storage account.
SELECT
id,
name,
properties,
type
FROM azure.storage.accounts_customer_initiated_migrations
WHERE accountName = '{{ accountName }}'
AND migrationName = '{{ migrationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';