com.aliyun.sdk.service.hbase20170115.models.ListClusterServiceConfigResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-hbase20170115 Show documentation
Show all versions of alibabacloud-hbase20170115 Show documentation
Alibaba Cloud HBase (20170115) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.hbase20170115.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListClusterServiceConfigResponseBody} extends {@link TeaModel}
*
* ListClusterServiceConfigResponseBody
*/
public class ListClusterServiceConfigResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("ClusterId")
private String clusterId;
@com.aliyun.core.annotation.NameInMap("ClusterName")
private String clusterName;
@com.aliyun.core.annotation.NameInMap("ConfigList")
private ConfigList configList;
@com.aliyun.core.annotation.NameInMap("PageNumber")
private Integer pageNumber;
@com.aliyun.core.annotation.NameInMap("PageRecordCount")
private Integer pageRecordCount;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("TotalRecordCount")
private Integer totalRecordCount;
private ListClusterServiceConfigResponseBody(Builder builder) {
this.clusterId = builder.clusterId;
this.clusterName = builder.clusterName;
this.configList = builder.configList;
this.pageNumber = builder.pageNumber;
this.pageRecordCount = builder.pageRecordCount;
this.requestId = builder.requestId;
this.totalRecordCount = builder.totalRecordCount;
}
public static Builder builder() {
return new Builder();
}
public static ListClusterServiceConfigResponseBody create() {
return builder().build();
}
/**
* @return clusterId
*/
public String getClusterId() {
return this.clusterId;
}
/**
* @return clusterName
*/
public String getClusterName() {
return this.clusterName;
}
/**
* @return configList
*/
public ConfigList getConfigList() {
return this.configList;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageRecordCount
*/
public Integer getPageRecordCount() {
return this.pageRecordCount;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return totalRecordCount
*/
public Integer getTotalRecordCount() {
return this.totalRecordCount;
}
public static final class Builder {
private String clusterId;
private String clusterName;
private ConfigList configList;
private Integer pageNumber;
private Integer pageRecordCount;
private String requestId;
private Integer totalRecordCount;
/**
* ClusterId.
*/
public Builder clusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
/**
* ClusterName.
*/
public Builder clusterName(String clusterName) {
this.clusterName = clusterName;
return this;
}
/**
* ConfigList.
*/
public Builder configList(ConfigList configList) {
this.configList = configList;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageRecordCount.
*/
public Builder pageRecordCount(Integer pageRecordCount) {
this.pageRecordCount = pageRecordCount;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TotalRecordCount.
*/
public Builder totalRecordCount(Integer totalRecordCount) {
this.totalRecordCount = totalRecordCount;
return this;
}
public ListClusterServiceConfigResponseBody build() {
return new ListClusterServiceConfigResponseBody(this);
}
}
public static class Config extends TeaModel {
@com.aliyun.core.annotation.NameInMap("DefaultValue")
private String defaultValue;
@com.aliyun.core.annotation.NameInMap("Description")
private String description;
@com.aliyun.core.annotation.NameInMap("Name")
private String name;
@com.aliyun.core.annotation.NameInMap("NeedRestart")
private String needRestart;
@com.aliyun.core.annotation.NameInMap("RunningValue")
private String runningValue;
@com.aliyun.core.annotation.NameInMap("Unit")
private String unit;
@com.aliyun.core.annotation.NameInMap("ValueRange")
private String valueRange;
private Config(Builder builder) {
this.defaultValue = builder.defaultValue;
this.description = builder.description;
this.name = builder.name;
this.needRestart = builder.needRestart;
this.runningValue = builder.runningValue;
this.unit = builder.unit;
this.valueRange = builder.valueRange;
}
public static Builder builder() {
return new Builder();
}
public static Config create() {
return builder().build();
}
/**
* @return defaultValue
*/
public String getDefaultValue() {
return this.defaultValue;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return needRestart
*/
public String getNeedRestart() {
return this.needRestart;
}
/**
* @return runningValue
*/
public String getRunningValue() {
return this.runningValue;
}
/**
* @return unit
*/
public String getUnit() {
return this.unit;
}
/**
* @return valueRange
*/
public String getValueRange() {
return this.valueRange;
}
public static final class Builder {
private String defaultValue;
private String description;
private String name;
private String needRestart;
private String runningValue;
private String unit;
private String valueRange;
/**
* DefaultValue.
*/
public Builder defaultValue(String defaultValue) {
this.defaultValue = defaultValue;
return this;
}
/**
* Description.
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* NeedRestart.
*/
public Builder needRestart(String needRestart) {
this.needRestart = needRestart;
return this;
}
/**
* RunningValue.
*/
public Builder runningValue(String runningValue) {
this.runningValue = runningValue;
return this;
}
/**
* Unit.
*/
public Builder unit(String unit) {
this.unit = unit;
return this;
}
/**
* ValueRange.
*/
public Builder valueRange(String valueRange) {
this.valueRange = valueRange;
return this;
}
public Config build() {
return new Config(this);
}
}
}
public static class ConfigList extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Config")
private java.util.List < Config> config;
private ConfigList(Builder builder) {
this.config = builder.config;
}
public static Builder builder() {
return new Builder();
}
public static ConfigList create() {
return builder().build();
}
/**
* @return config
*/
public java.util.List < Config> getConfig() {
return this.config;
}
public static final class Builder {
private java.util.List < Config> config;
/**
* Config.
*/
public Builder config(java.util.List < Config> config) {
this.config = config;
return this;
}
public ConfigList build() {
return new ConfigList(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy