com.aliyun.rds20140815.models.CopyDatabaseResponseBody 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 CopyDatabaseResponseBody extends TeaModel {
/**
* The name of the database.
*
* example:
* test02
*/
@NameInMap("DBName")
public String DBName;
/**
* The status of the database. Valid values:
*
* - Creating
* - Running
* - Deleting
*
*
* example:
* Creating
*/
@NameInMap("DBStatus")
public String DBStatus;
/**
* The ID of the request.
*
* example:
* 1AD222E9-E606-4A42-BF6D-8A4442913CEF
*/
@NameInMap("RequestId")
public String requestId;
/**
* The ID of the task.
*
* example:
* 2562****
*/
@NameInMap("TaskId")
public String taskId;
public static CopyDatabaseResponseBody build(java.util.Map map) throws Exception {
CopyDatabaseResponseBody self = new CopyDatabaseResponseBody();
return TeaModel.build(map, self);
}
public CopyDatabaseResponseBody setDBName(String DBName) {
this.DBName = DBName;
return this;
}
public String getDBName() {
return this.DBName;
}
public CopyDatabaseResponseBody setDBStatus(String DBStatus) {
this.DBStatus = DBStatus;
return this;
}
public String getDBStatus() {
return this.DBStatus;
}
public CopyDatabaseResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CopyDatabaseResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}