com.antgroup.antchain.openapi.deps.models.QueryAppservicebuildpackrelationRequest 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 QueryAppservicebuildpackrelationRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 一组应用服务id
@NameInMap("appservice_ids")
public java.util.List appserviceIds;
// 一组应用id
//
@NameInMap("app_ids")
public java.util.List appIds;
// buildpackArch
@NameInMap("buildpack_arch")
public String buildpackArch;
// buildpackIds
@NameInMap("buildpack_ids")
public java.util.List buildpackIds;
// 当前页
@NameInMap("current_page")
public Long currentPage;
// 是否降序
@NameInMap("descend")
public Boolean descend;
// ids
@NameInMap("ids")
public java.util.List ids;
// 每页个数
@NameInMap("page_size")
public Long pageSize;
// 分类
@NameInMap("sort_field")
public String sortField;
// 开始索引
@NameInMap("start_index")
public Long startIndex;
// techstackIdentities
@NameInMap("techstack_identities")
public java.util.List techstackIdentities;
// 一组技术栈id
@NameInMap("techstack_ids")
public java.util.List techstackIds;
// workspaceId
@NameInMap("workspace_id")
public String workspaceId;
public static QueryAppservicebuildpackrelationRequest build(java.util.Map map) throws Exception {
QueryAppservicebuildpackrelationRequest self = new QueryAppservicebuildpackrelationRequest();
return TeaModel.build(map, self);
}
public QueryAppservicebuildpackrelationRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryAppservicebuildpackrelationRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public QueryAppservicebuildpackrelationRequest setAppserviceIds(java.util.List appserviceIds) {
this.appserviceIds = appserviceIds;
return this;
}
public java.util.List getAppserviceIds() {
return this.appserviceIds;
}
public QueryAppservicebuildpackrelationRequest setAppIds(java.util.List appIds) {
this.appIds = appIds;
return this;
}
public java.util.List getAppIds() {
return this.appIds;
}
public QueryAppservicebuildpackrelationRequest setBuildpackArch(String buildpackArch) {
this.buildpackArch = buildpackArch;
return this;
}
public String getBuildpackArch() {
return this.buildpackArch;
}
public QueryAppservicebuildpackrelationRequest setBuildpackIds(java.util.List buildpackIds) {
this.buildpackIds = buildpackIds;
return this;
}
public java.util.List getBuildpackIds() {
return this.buildpackIds;
}
public QueryAppservicebuildpackrelationRequest setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
return this;
}
public Long getCurrentPage() {
return this.currentPage;
}
public QueryAppservicebuildpackrelationRequest setDescend(Boolean descend) {
this.descend = descend;
return this;
}
public Boolean getDescend() {
return this.descend;
}
public QueryAppservicebuildpackrelationRequest setIds(java.util.List ids) {
this.ids = ids;
return this;
}
public java.util.List getIds() {
return this.ids;
}
public QueryAppservicebuildpackrelationRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryAppservicebuildpackrelationRequest setSortField(String sortField) {
this.sortField = sortField;
return this;
}
public String getSortField() {
return this.sortField;
}
public QueryAppservicebuildpackrelationRequest setStartIndex(Long startIndex) {
this.startIndex = startIndex;
return this;
}
public Long getStartIndex() {
return this.startIndex;
}
public QueryAppservicebuildpackrelationRequest setTechstackIdentities(java.util.List techstackIdentities) {
this.techstackIdentities = techstackIdentities;
return this;
}
public java.util.List getTechstackIdentities() {
return this.techstackIdentities;
}
public QueryAppservicebuildpackrelationRequest setTechstackIds(java.util.List techstackIds) {
this.techstackIds = techstackIds;
return this;
}
public java.util.List getTechstackIds() {
return this.techstackIds;
}
public QueryAppservicebuildpackrelationRequest setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
}