![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.rds20140815.models.UpgradeDBInstanceKernelVersionResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class UpgradeDBInstanceKernelVersionResponseBody extends TeaModel {
/**
* The ID of the instance.
*
* example:
* rm-bpxxxxx
*/
@NameInMap("DBInstanceName")
public String DBInstanceName;
/**
* The ID of the request.
*
* example:
* DA2ECBA0-4745-4491-9166-799FF8984AC9
*/
@NameInMap("RequestId")
public String requestId;
/**
* The new minor engine version of the instance.
*
* example:
* xcluster80_20210305
*/
@NameInMap("TargetMinorVersion")
public String targetMinorVersion;
/**
* The ID of the task.
*
* example:
* 226917****
*/
@NameInMap("TaskId")
public String taskId;
public static UpgradeDBInstanceKernelVersionResponseBody build(java.util.Map map) throws Exception {
UpgradeDBInstanceKernelVersionResponseBody self = new UpgradeDBInstanceKernelVersionResponseBody();
return TeaModel.build(map, self);
}
public UpgradeDBInstanceKernelVersionResponseBody setDBInstanceName(String DBInstanceName) {
this.DBInstanceName = DBInstanceName;
return this;
}
public String getDBInstanceName() {
return this.DBInstanceName;
}
public UpgradeDBInstanceKernelVersionResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public UpgradeDBInstanceKernelVersionResponseBody setTargetMinorVersion(String targetMinorVersion) {
this.targetMinorVersion = targetMinorVersion;
return this;
}
public String getTargetMinorVersion() {
return this.targetMinorVersion;
}
public UpgradeDBInstanceKernelVersionResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy