com.aliyun.sdk.service.cloudapi20160714.models.DescribeSystemParametersResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Alibaba Cloud CloudAPI (20160714) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeSystemParametersResponseBody} extends {@link TeaModel}
*
* DescribeSystemParametersResponseBody
*/
public class DescribeSystemParametersResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("SystemParams")
private SystemParams systemParams;
private DescribeSystemParametersResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.systemParams = builder.systemParams;
}
public static Builder builder() {
return new Builder();
}
public static DescribeSystemParametersResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return systemParams
*/
public SystemParams getSystemParams() {
return this.systemParams;
}
public static final class Builder {
private String requestId;
private SystemParams systemParams;
/**
* The ID of the request.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The returned information about system parameters. It is an array that consists of SystemParam data.
*/
public Builder systemParams(SystemParams systemParams) {
this.systemParams = systemParams;
return this;
}
public DescribeSystemParametersResponseBody build() {
return new DescribeSystemParametersResponseBody(this);
}
}
public static class SystemParamItem extends TeaModel {
@com.aliyun.core.annotation.NameInMap("DemoValue")
private String demoValue;
@com.aliyun.core.annotation.NameInMap("Description")
private String description;
@com.aliyun.core.annotation.NameInMap("ParamName")
private String paramName;
@com.aliyun.core.annotation.NameInMap("ParamType")
private String paramType;
private SystemParamItem(Builder builder) {
this.demoValue = builder.demoValue;
this.description = builder.description;
this.paramName = builder.paramName;
this.paramType = builder.paramType;
}
public static Builder builder() {
return new Builder();
}
public static SystemParamItem create() {
return builder().build();
}
/**
* @return demoValue
*/
public String getDemoValue() {
return this.demoValue;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return paramName
*/
public String getParamName() {
return this.paramName;
}
/**
* @return paramType
*/
public String getParamType() {
return this.paramType;
}
public static final class Builder {
private String demoValue;
private String description;
private String paramName;
private String paramType;
/**
* Examples
*/
public Builder demoValue(String demoValue) {
this.demoValue = demoValue;
return this;
}
/**
* The description of a parameter.
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* The name of the parameter.
*/
public Builder paramName(String paramName) {
this.paramName = paramName;
return this;
}
/**
* The type of the parameter.
*/
public Builder paramType(String paramType) {
this.paramType = paramType;
return this;
}
public SystemParamItem build() {
return new SystemParamItem(this);
}
}
}
public static class SystemParams extends TeaModel {
@com.aliyun.core.annotation.NameInMap("SystemParamItem")
private java.util.List < SystemParamItem> systemParamItem;
private SystemParams(Builder builder) {
this.systemParamItem = builder.systemParamItem;
}
public static Builder builder() {
return new Builder();
}
public static SystemParams create() {
return builder().build();
}
/**
* @return systemParamItem
*/
public java.util.List < SystemParamItem> getSystemParamItem() {
return this.systemParamItem;
}
public static final class Builder {
private java.util.List < SystemParamItem> systemParamItem;
/**
* SystemParamItem.
*/
public Builder systemParamItem(java.util.List < SystemParamItem> systemParamItem) {
this.systemParamItem = systemParamItem;
return this;
}
public SystemParams build() {
return new SystemParams(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy