com.aliyun.rds20140815.models.DeleteReplicationLinkResponseBody 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 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;
}
}