Querying the Row Comparison Overview
Function
This API is used to query the row comparison overview.
URI
GET /v3/{project_id}/jobs/{job_id}/compare/{compare_job_id}/line-overview
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
project_id |
Yes |
String |
Project ID of a tenant in a region. For details, see Obtaining a Project ID. |
|
job_id |
Yes |
String |
Task ID. |
|
compare_job_id |
Yes |
String |
ID of a comparison task. |
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
status |
No |
Integer |
Comparison status.
|
|
limit |
No |
Integer |
Number of items displayed per page. Default value: 1000 |
|
offset |
No |
Integer |
Offset, which is the position where the query starts. The value must be no less than 0. Default value: 0 |
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 Enumerated values:
|
Response Parameters
Status code: 200
|
Parameter |
Type |
Description |
|---|---|---|
|
total_count |
Integer |
Number of comparison items. |
|
data_compare_overview_infos |
Array of objects |
Information list. For details, see Table 5. |
|
Parameter |
Type |
Description |
|---|---|---|
|
source_db_name |
String |
Source database name. |
|
target_db_name |
String |
Destination database name. |
|
status |
Integer |
Comparison status.
|
Example Request
Querying the row comparison overview
https://{endpoint}/v3/054ba152d480d55b2f5dc0069e7ddef0/jobs/f8688cfa-4e05-406f-a2e6-37a773cjb20y/table/compare/48c6acb4-1473-48fd-8676-df3705758c27/line-overview?offset=0&limit=10&status=2
Example Response
Status code: 200
OK
{
"total_count" : 1,
"data_compare_overview_infos" : [ {
"status" : 2,
"source_db_name" : "my_db",
"target_db_name" : "my_db"
} ]
}
Status code: 400
Bad Request
{
"error_code" : "DRS.M00202",
"error_msg" : "The value of jobId is invalid."
}
Status Code
|
Status Code |
Description |
|---|---|
|
200 |
OK |
|
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.