migrations
Creates, updates, deletes, gets or lists a migrations resource.
Overview
| Name | migrations |
| Type | Resource |
| Id | azure_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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
validate | exec | resource_group_name, cluster_name, subscription_id, sourceResourceId | Validates 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.
| Name | Datatype | Description |
|---|---|---|
cluster_name | string | The 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_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
Lifecycle Methods
- validate
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 }}
}'
;