com.aliyun.dms_enterprise20181101.models.GetDataImportSQLRequest 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 GetDataImportSQLRequest extends TeaModel {
/**
* The ticket ID. You can call the ListOrders operation to query the ticket ID.
* This parameter is required.
*
* example:
* 14****
*/
@NameInMap("OrderId")
public Long orderId;
/**
* The SQL ID. You can call the ListDataImportSQLPreCheckDetail operation to query the SQL ID.
* This parameter is required.
*
* example:
* 15****
*/
@NameInMap("SqlId")
public Long sqlId;
/**
* The tenant ID. You can call the GetUserActiveTenant or ListUserTenants operation to query the tenant ID.
*
* example:
* 3***
*/
@NameInMap("Tid")
public Long tid;
public static GetDataImportSQLRequest build(java.util.Map map) throws Exception {
GetDataImportSQLRequest self = new GetDataImportSQLRequest();
return TeaModel.build(map, self);
}
public GetDataImportSQLRequest setOrderId(Long orderId) {
this.orderId = orderId;
return this;
}
public Long getOrderId() {
return this.orderId;
}
public GetDataImportSQLRequest setSqlId(Long sqlId) {
this.sqlId = sqlId;
return this;
}
public Long getSqlId() {
return this.sqlId;
}
public GetDataImportSQLRequest setTid(Long tid) {
this.tid = tid;
return this;
}
public Long getTid() {
return this.tid;
}
}