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

com.aliyun.rds20140815.models.DeleteReplicationLinkResponseBody 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 DeleteReplicationLinkResponseBody extends TeaModel {
    /**
     * 

The ID of the instance.

* * example: *

pgm-bp1trqb4p1xd****

*/ @NameInMap("DBInstanceId") public String DBInstanceId; /** *

The request ID.

* * example: *

847BA085-B377-4BFA-8267-F82345ECE1D2

*/ @NameInMap("RequestId") public String requestId; /** *

The ID of the task.

* * example: *

3472****

*/ @NameInMap("TaskId") public Long taskId; /** *

The name of the task.

* * example: *

test01

*/ @NameInMap("TaskName") public String taskName; public static DeleteReplicationLinkResponseBody build(java.util.Map map) throws Exception { DeleteReplicationLinkResponseBody self = new DeleteReplicationLinkResponseBody(); return TeaModel.build(map, self); } public DeleteReplicationLinkResponseBody setDBInstanceId(String DBInstanceId) { this.DBInstanceId = DBInstanceId; return this; } public String getDBInstanceId() { return this.DBInstanceId; } public DeleteReplicationLinkResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DeleteReplicationLinkResponseBody setTaskId(Long taskId) { this.taskId = taskId; return this; } public Long getTaskId() { return this.taskId; } public DeleteReplicationLinkResponseBody setTaskName(String taskName) { this.taskName = taskName; return this; } public String getTaskName() { return this.taskName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy