Skip to main content

migrations

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

Overview

Namemigrations
TypeResource
Idazure_isv.redisenterprise.migrations

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
validateexecresource_group_name, cluster_name, subscription_id, sourceResourceIdValidates if a source Azure Cache for Redis resource can be migrated to a target Azure Managed Redis resource.

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
cluster_namestringThe name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

Lifecycle Methods

Validates if a source Azure Cache for Redis resource can be migrated to a target Azure Managed Redis resource.

EXEC azure_isv.redisenterprise.migrations.validate 
@resource_group_name='{{ resource_group_name }}' --required,
@cluster_name='{{ cluster_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"sourceResourceId": "{{ sourceResourceId }}",
"skipDataMigration": {{ skipDataMigration }},
"forceMigrate": {{ forceMigrate }}
}'
;