Selecting Database Objects in Batches
Function
This API is used to select the databases or tables to be migrated.
Debugging
You can debug the API in API Explorer to support automatic authentication. API Explorer can automatically generate and debug example SDK code.
Constraints
- Only real-time migration and real-time synchronization support object selection.
- After a task is created, the task status is CONFIGURATION. The task can be invoked only after the test of connections to the source and destination databases is successful and the API for modifying the task is invoked.
- You can call a maximum of 10 APIs in batches.
URI
PUT /v3/{project_id}/jobs/batch-select-objects
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID of a tenant in a region For details about how to obtain the project ID, see Obtaining a Project ID. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
Content-Type |
Yes |
String |
The content type. The default value is application/json. |
X-Auth-Token |
Yes |
String |
User token obtained from IAM. |
X-Language |
No |
String |
Request language type Default value: en-us Values:
|
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
jobs |
Yes |
Array of objects |
Request task ID list for updating database objects in batches. For details, see Table 4. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
job_id |
Yes |
String |
Task ID. |
selected |
No |
Boolean |
Whether to select an object. If this parameter is not set, the default value is No. Yes: Customize the objects to be migrated. No: Migrate all VMs. |
sync_database |
No |
Boolean |
Whether to perform database-level synchronization. |
job |
No |
Array of objects |
Data object selection information. This parameter is mandatory when selected is set to true. For details, see Table 5. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
id |
No |
String |
When object_type is set to database, this parameter indicates the database name. If object_type is set to table or view, set the field value by referring to the example. |
parent_id |
No |
String |
Database name. This parameter is mandatory when object_type is set to table or view. |
object_type |
No |
String |
Type. Values:
|
object_name |
No |
String |
Database object name, database name, table name, and view name. |
select |
No |
String |
Whether to migrate the database objects. true indicates that the database objects will be migrated. false indicates that the database objects will not be migrated. partial indicates some tables in the database will be migrated. If this parameter is not specified, the default value is false. |
object_alias_name |
No |
String |
Alias, which is the new mapped name. This parameter is used only for synchronization tasks. |
Response Parameters
Status code: 202
Parameter |
Type |
Description |
---|---|---|
all_counts |
Long |
Total number. |
results |
Array of objects |
Response list for selecting objects in batches. For details, see Table 7. |
Example Request
- Selecting specified databases and tables for migration
https://{endpoint}/v3/054ba152d480d55b2f5dc0069e7ddef0/jobs/batch-select-objects { "jobs" : [ { "job" : [ { "id" : "fastunit", "parent_id" : null, "object_name" : "fastunit", "object_type" : "database", "select" : "partial", "object_alias_name" : null }, { "id" : "fastunit-*-*-coll", "parent_id" : "fastunit", "object_name" : "coll", "object_type" : "table", "select" : "true", "object_alias_name" : null }, { "id" : "ycy1", "parent_id" : null, "object_name" : "ycy1", "object_type" : "database", "select" : "partial", "object_alias_name" : null }, { "id" : "ycy1-*-*-coll", "parent_id" : "ycy1", "object_name" : "coll", "object_type" : "table", "select" : "true", "object_alias_name" : null }, { "id" : "ycy1-*-*-collcount", "parent_id" : "ycy1", "object_name" : "collcount", "object_type" : "table", "select" : "true", "object_alias_name" : null } ], "job_id" : "57fd2692-0ebe-4714-9b59-fe7aa65djb15", "selected" : true } ] }
- Selecting all objects for migration
https://{endpoint}/v3/054ba152d480d55b2f5dc0069e7ddef0/jobs/batch-select-objects { "jobs" : [ { "job" : [ ], "job_id" : "e59f5eef-2bcc-4461-b9ac-10aded44jb15", "selected" : false } ] }
Example Response
Status code: 202
Accepted
{ "all_counts": 1, "results": [{ "job_id": "4d700f6f-9a17-47e0-a7d6-1bc2155jb101", "status": true }] }
Status Code
Status Code |
Description |
---|---|
202 |
Accepted |
400 |
Bad Request |
Error Code
For details, see Error Code.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot