com.aliyun.rds20140815.models.DeleteDBNodesResponseBody 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 DeleteDBNodesResponseBody extends TeaModel {
/**
* The ID of the instance.
*
* example:
* rm-uf6wjk5****
*/
@NameInMap("DBInstanceId")
public String DBInstanceId;
/**
* The ID of the order.
*
* example:
* 100780000000000
*/
@NameInMap("OrderId")
public Long orderId;
/**
* The ID of the request.
*
* example:
* 8B993DA9-5272-5414-94E3-4CA8BA0146C2
*/
@NameInMap("RequestId")
public String requestId;
public static DeleteDBNodesResponseBody build(java.util.Map map) throws Exception {
DeleteDBNodesResponseBody self = new DeleteDBNodesResponseBody();
return TeaModel.build(map, self);
}
public DeleteDBNodesResponseBody setDBInstanceId(String DBInstanceId) {
this.DBInstanceId = DBInstanceId;
return this;
}
public String getDBInstanceId() {
return this.DBInstanceId;
}
public DeleteDBNodesResponseBody setOrderId(Long orderId) {
this.orderId = orderId;
return this;
}
public Long getOrderId() {
return this.orderId;
}
public DeleteDBNodesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}