com.antgroup.antchain.openapi.deps.models.QueryApplicationServiceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class QueryApplicationServiceRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 待查询的应用名称。最大60个UTF-8字符
@NameInMap("application_name")
public String applicationName;
// 当前页码,默认为1
@NameInMap("page_num")
public Integer pageNum;
// 分页大小,默认10,最大50
@NameInMap("page_size")
public Integer pageSize;
// 目标环境名称
@NameInMap("workspaces")
public java.util.List workspaces;
public static QueryApplicationServiceRequest build(java.util.Map map) throws Exception {
QueryApplicationServiceRequest self = new QueryApplicationServiceRequest();
return TeaModel.build(map, self);
}
public QueryApplicationServiceRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryApplicationServiceRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public QueryApplicationServiceRequest setApplicationName(String applicationName) {
this.applicationName = applicationName;
return this;
}
public String getApplicationName() {
return this.applicationName;
}
public QueryApplicationServiceRequest setPageNum(Integer pageNum) {
this.pageNum = pageNum;
return this;
}
public Integer getPageNum() {
return this.pageNum;
}
public QueryApplicationServiceRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QueryApplicationServiceRequest setWorkspaces(java.util.List workspaces) {
this.workspaces = workspaces;
return this;
}
public java.util.List getWorkspaces() {
return this.workspaces;
}
}