com.aliyun.dms_enterprise20181101.models.GetStructSyncJobAnalyzeResultRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dms_enterprise20181101 Show documentation
Show all versions of dms_enterprise20181101 Show documentation
Alibaba Cloud dms-enterprise (20181101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;
import com.aliyun.tea.*;
public class GetStructSyncJobAnalyzeResultRequest extends TeaModel {
/**
* The type of the comparison. Valid values:
*
* - CREATE_TABLE: compares the created tables.
* - ALTER_TABLE: compares the modified tables.
* - EQUAL_TABLE: compares the identical tables.
* - PASS_TABLE: compares the tables that are skipped during schema synchronization.
* - NOT_COMPARE: does not compare tables.
*
*
* example:
* CREATE_TABLE
*/
@NameInMap("CompareType")
public String compareType;
/**
* The ID of the ticket.
* This parameter is required.
*
* example:
* 1342355
*/
@NameInMap("OrderId")
public Long orderId;
/**
* The number of the page to return.
*
* example:
* 1
*/
@NameInMap("PageNumber")
public Long pageNumber;
/**
* The number of entries to return on each page.
*
* example:
* 20
*/
@NameInMap("PageSize")
public Long pageSize;
/**
* The ID of the tenant.
*
* To view the tenant ID, move the pointer over the profile picture in the upper-right corner of the Data Management (DMS) console. For more information, see Manage DMS tenants.
*
*
* example:
* 1
*/
@NameInMap("Tid")
public Long tid;
public static GetStructSyncJobAnalyzeResultRequest build(java.util.Map map) throws Exception {
GetStructSyncJobAnalyzeResultRequest self = new GetStructSyncJobAnalyzeResultRequest();
return TeaModel.build(map, self);
}
public GetStructSyncJobAnalyzeResultRequest setCompareType(String compareType) {
this.compareType = compareType;
return this;
}
public String getCompareType() {
return this.compareType;
}
public GetStructSyncJobAnalyzeResultRequest setOrderId(Long orderId) {
this.orderId = orderId;
return this;
}
public Long getOrderId() {
return this.orderId;
}
public GetStructSyncJobAnalyzeResultRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetStructSyncJobAnalyzeResultRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public GetStructSyncJobAnalyzeResultRequest setTid(Long tid) {
this.tid = tid;
return this;
}
public Long getTid() {
return this.tid;
}
}