All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.rds20140815.models.CopyDatabaseResponseBody Maven / Gradle / Ivy

There is a newer version: 6.3.2
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy