com.antgroup.antchain.openapi.cas.models.QueryLoadbalanceImportRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.cas.models;
import com.aliyun.tea.*;
public class QueryLoadbalanceImportRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// current_page
@NameInMap("current_page")
public Long currentPage;
// page_size
@NameInMap("page_size")
public Long pageSize;
// workspace
@NameInMap("workspace")
public String workspace;
// zone_id
@NameInMap("zone_id")
public String zoneId;
public static QueryLoadbalanceImportRequest build(java.util.Map map) throws Exception {
QueryLoadbalanceImportRequest self = new QueryLoadbalanceImportRequest();
return TeaModel.build(map, self);
}
public QueryLoadbalanceImportRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryLoadbalanceImportRequest setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
return this;
}
public Long getCurrentPage() {
return this.currentPage;
}
public QueryLoadbalanceImportRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryLoadbalanceImportRequest setWorkspace(String workspace) {
this.workspace = workspace;
return this;
}
public String getWorkspace() {
return this.workspace;
}
public QueryLoadbalanceImportRequest setZoneId(String zoneId) {
this.zoneId = zoneId;
return this;
}
public String getZoneId() {
return this.zoneId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy