com.aliyun.sdk.service.polardb20170801.models.EvaluateRegionResourceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-polardb20170801 Show documentation
Show all versions of alibabacloud-polardb20170801 Show documentation
Alibaba Cloud polardb (20170801) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.polardb20170801.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link EvaluateRegionResourceResponseBody} extends {@link TeaModel}
*
* EvaluateRegionResourceResponseBody
*/
public class EvaluateRegionResourceResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("DBInstanceAvailable")
private String DBInstanceAvailable;
@com.aliyun.core.annotation.NameInMap("DBType")
private String DBType;
@com.aliyun.core.annotation.NameInMap("DBVersion")
private String DBVersion;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private EvaluateRegionResourceResponseBody(Builder builder) {
this.DBInstanceAvailable = builder.DBInstanceAvailable;
this.DBType = builder.DBType;
this.DBVersion = builder.DBVersion;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static EvaluateRegionResourceResponseBody create() {
return builder().build();
}
/**
* @return DBInstanceAvailable
*/
public String getDBInstanceAvailable() {
return this.DBInstanceAvailable;
}
/**
* @return DBType
*/
public String getDBType() {
return this.DBType;
}
/**
* @return DBVersion
*/
public String getDBVersion() {
return this.DBVersion;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String DBInstanceAvailable;
private String DBType;
private String DBVersion;
private String requestId;
/**
* Indicates whether sufficient resources are available. Valid values:
*
* - true
* - false
*
*
* example:
* true
*/
public Builder DBInstanceAvailable(String DBInstanceAvailable) {
this.DBInstanceAvailable = DBInstanceAvailable;
return this;
}
/**
* The type of the database engine. Valid values:
*
* - MySQL
* - PostgreSQL
* - Oracle
*
*
* example:
* MySQL
*/
public Builder DBType(String DBType) {
this.DBType = DBType;
return this;
}
/**
* The version of the database engine
*
* Valid values for the MySQL database engine:
*
* - 5.6
* - 5.7
* - 8.0
*
*
* Valid values for the PostgreSQL database engine:
*
* - 11
* - 14
*
*
* Valid value for the Oracle database engine: 11
*
*
*
* example:
* 8.0
*/
public Builder DBVersion(String DBVersion) {
this.DBVersion = DBVersion;
return this;
}
/**
* The ID of the request.
*
* example:
* 69A85BAF-1089-4CDF-A82F-0A140F******
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public EvaluateRegionResourceResponseBody build() {
return new EvaluateRegionResourceResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy