com.aliyuncs.v5.dts.model.v20200101.DescribeDtsJobsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-dts-v5 Show documentation
Show all versions of aliyun-java-sdk-dts-v5 Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.v5.dts.model.v20200101;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.dts.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeDtsJobsRequest extends RpcAcsRequest {
private String orderDirection;
private String type;
private Integer pageNumber;
private String orderColumn;
private Integer pageSize;
private String groupId;
private String params;
private String jobType;
private String tags;
private String region;
private String status;
public DescribeDtsJobsRequest() {
super("Dts", "2020-01-01", "DescribeDtsJobs", "dts");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getOrderDirection() {
return this.orderDirection;
}
public void setOrderDirection(String orderDirection) {
this.orderDirection = orderDirection;
if(orderDirection != null){
putQueryParameter("OrderDirection", orderDirection);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getOrderColumn() {
return this.orderColumn;
}
public void setOrderColumn(String orderColumn) {
this.orderColumn = orderColumn;
if(orderColumn != null){
putQueryParameter("OrderColumn", orderColumn);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putQueryParameter("GroupId", groupId);
}
}
public String getParams() {
return this.params;
}
public void setParams(String params) {
this.params = params;
if(params != null){
putQueryParameter("Params", params);
}
}
public String getJobType() {
return this.jobType;
}
public void setJobType(String jobType) {
this.jobType = jobType;
if(jobType != null){
putQueryParameter("JobType", jobType);
}
}
public String getTags() {
return this.tags;
}
public void setTags(String tags) {
this.tags = tags;
if(tags != null){
putQueryParameter("Tags", tags);
}
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
if(region != null){
putQueryParameter("Region", region);
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class getResponseClass() {
return DescribeDtsJobsResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy