com.aliyun.rds20140815.models.UpgradeDBInstanceMajorVersionPrecheckResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rds20140815 Show documentation
Show all versions of rds20140815 Show documentation
Alibaba Cloud rds (20140815) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class UpgradeDBInstanceMajorVersionPrecheckResponseBody extends TeaModel {
/**
* The instance name.
*
* example:
* pgm-bp1c808s731l****
*/
@NameInMap("DBInstanceName")
public String DBInstanceName;
/**
* The request ID.
*
* example:
* 99C1FEEE-FB44-5342-8EBA-DC1E1A1557A4
*/
@NameInMap("RequestId")
public String requestId;
/**
* The new major engine version of the instance.
*
* example:
* 12.0
*/
@NameInMap("TargetMajorVersion")
public String targetMajorVersion;
/**
* The task ID.
*
* example:
* 41698****
*/
@NameInMap("TaskId")
public String taskId;
public static UpgradeDBInstanceMajorVersionPrecheckResponseBody build(java.util.Map map) throws Exception {
UpgradeDBInstanceMajorVersionPrecheckResponseBody self = new UpgradeDBInstanceMajorVersionPrecheckResponseBody();
return TeaModel.build(map, self);
}
public UpgradeDBInstanceMajorVersionPrecheckResponseBody setDBInstanceName(String DBInstanceName) {
this.DBInstanceName = DBInstanceName;
return this;
}
public String getDBInstanceName() {
return this.DBInstanceName;
}
public UpgradeDBInstanceMajorVersionPrecheckResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public UpgradeDBInstanceMajorVersionPrecheckResponseBody setTargetMajorVersion(String targetMajorVersion) {
this.targetMajorVersion = targetMajorVersion;
return this;
}
public String getTargetMajorVersion() {
return this.targetMajorVersion;
}
public UpgradeDBInstanceMajorVersionPrecheckResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}