This API is used to create an online data migration task.
POST /v2/{project_id}/migration/instance
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. For details, see Obtaining a Project ID. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
name |
Yes |
String |
Name of the online migration task. |
description |
No |
String |
Description of the online migration task. |
vpc_id |
Yes |
String |
VPC ID. Methods:
|
subnet_id |
Yes |
String |
Subnet network ID. Methods:
|
security_group_id |
Yes |
String |
Security group which the instance belongs to. A security group implements access control for VMs within a security group or in different security groups, enhancing VM security. You can define different access rules for a security group to protect the VMs that are added to this security group. Methods:
|
Status code: 200
Parameter |
Type |
Description |
---|---|---|
instance_id |
String |
Online migration task ID. |
Status code: 400
Parameter |
Type |
Description |
---|---|---|
error_msg |
String |
Error message. Maximum: 1024 |
error_code |
String |
Error code. Maximum: 9 |
error_ext_msg |
String |
Extended error information. This parameter is not used currently and is set to null. Maximum: 1024 |
Status code: 401
Parameter |
Type |
Description |
---|---|---|
error_msg |
String |
Error message. Maximum: 1024 |
error_code |
String |
Error code. Maximum: 9 |
error_ext_msg |
String |
Extended error information. This parameter is not used currently and is set to null. Maximum: 1024 |
Status code: 403
Parameter |
Type |
Description |
---|---|---|
error_msg |
String |
Error message. Maximum: 1024 |
error_code |
String |
Error code. Maximum: 9 |
error_ext_msg |
String |
Extended error information. This parameter is not used currently and is set to null. Maximum: 1024 |
Status code: 404
Parameter |
Type |
Description |
---|---|---|
error_msg |
String |
Error message. Maximum: 1024 |
error_code |
String |
Error code. Maximum: 9 |
error_ext_msg |
String |
Extended error information. This parameter is not used currently and is set to null. Maximum: 1024 |
Status code: 500
Parameter |
Type |
Description |
---|---|---|
error_msg |
String |
Error message. Maximum: 1024 |
error_code |
String |
Error code. Maximum: 9 |
error_ext_msg |
String |
Extended error information. This parameter is not used currently and is set to null. Maximum: 1024 |
Creating an online migration task and configuring the VPC, subnet, and security group for the migration ECS
POST https://{dcs_endpoint}/v2/{project_id}/migration/instance { "name" : "dcs-migration-thrc", "description" : "Creating an online data migration task", "vpc_id" : "5e37b3be-950a-48e1-b498-65b63d336481", "subnet_id" : "40f15ed6-7f85-49d5-ba0e-65b940d4812c", "security_group_id" : "9df96622-24b7-4813-84b8-ab74552a21d7" }
Status code: 200
Online data migration task created.
{ "instance_id" : "b21989ec-2889-4b8e-99db-19c073425ec2" }
Status Code |
Description |
---|---|
200 |
Online data migration task created. |
400 |
Invalid request. |
401 |
Invalid authentication information. |
403 |
The request is rejected. |
404 |
The requested resource is not found. |
500 |
Internal service error. |
See Error Codes.