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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy