com.aliyun.dms_enterprise20181101.models.ListDBTaskSQLJobDetailRequest 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 ListDBTaskSQLJobDetailRequest extends TeaModel {
/**
* The ID of the SQL task. You can call the ListDBTaskSQLJob operation to query the SQL task ID.
* This parameter is required.
*
* example:
* 1276****
*/
@NameInMap("JobId")
public Long jobId;
/**
* 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. You can call the GetUserActiveTenant operation to query the tenant ID.
*
* example:
* 3***
*/
@NameInMap("Tid")
public Long tid;
public static ListDBTaskSQLJobDetailRequest build(java.util.Map map) throws Exception {
ListDBTaskSQLJobDetailRequest self = new ListDBTaskSQLJobDetailRequest();
return TeaModel.build(map, self);
}
public ListDBTaskSQLJobDetailRequest setJobId(Long jobId) {
this.jobId = jobId;
return this;
}
public Long getJobId() {
return this.jobId;
}
public ListDBTaskSQLJobDetailRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ListDBTaskSQLJobDetailRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public ListDBTaskSQLJobDetailRequest setTid(Long tid) {
this.tid = tid;
return this;
}
public Long getTid() {
return this.tid;
}
}