com.aliyuncs.sae.model.v20190506.ListJobsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-sae Show documentation
Show all versions of aliyun-java-sdk-sae 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.sae.model.v20190506;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.sae.Endpoint;
/**
* @author auto create
* @version
*/
public class ListJobsRequest extends RoaAcsRequest {
private String appName;
private String namespaceId;
private Integer pageSize;
private String orderBy;
private String workload;
private Integer currentPage;
private String fieldValue;
private Boolean reverse;
private String fieldType;
private String tags;
public ListJobsRequest() {
super("sae", "2019-05-06", "ListJobs", "serverless");
setUriPattern("/pop/v1/sam/job/listJobs");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getAppName() {
return this.appName;
}
public void setAppName(String appName) {
this.appName = appName;
if(appName != null){
putQueryParameter("AppName", appName);
}
}
public String getNamespaceId() {
return this.namespaceId;
}
public void setNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
if(namespaceId != null){
putQueryParameter("NamespaceId", namespaceId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getOrderBy() {
return this.orderBy;
}
public void setOrderBy(String orderBy) {
this.orderBy = orderBy;
if(orderBy != null){
putQueryParameter("OrderBy", orderBy);
}
}
public String getWorkload() {
return this.workload;
}
public void setWorkload(String workload) {
this.workload = workload;
if(workload != null){
putQueryParameter("Workload", workload);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getFieldValue() {
return this.fieldValue;
}
public void setFieldValue(String fieldValue) {
this.fieldValue = fieldValue;
if(fieldValue != null){
putQueryParameter("FieldValue", fieldValue);
}
}
public Boolean getReverse() {
return this.reverse;
}
public void setReverse(Boolean reverse) {
this.reverse = reverse;
if(reverse != null){
putQueryParameter("Reverse", reverse.toString());
}
}
public String getFieldType() {
return this.fieldType;
}
public void setFieldType(String fieldType) {
this.fieldType = fieldType;
if(fieldType != null){
putQueryParameter("FieldType", fieldType);
}
}
public String getTags() {
return this.tags;
}
public void setTags(String tags) {
this.tags = tags;
if(tags != null){
putQueryParameter("Tags", tags);
}
}
@Override
public Class getResponseClass() {
return ListJobsResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy