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

com.aliyun.sdk.service.polardb20170801.models.TempModifyDBNodeResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.polardb20170801.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link TempModifyDBNodeResponseBody} extends {@link TeaModel}
 *
 * 

TempModifyDBNodeResponseBody

*/ public class TempModifyDBNodeResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("DBClusterId") private String DBClusterId; @com.aliyun.core.annotation.NameInMap("DBNodeIds") private java.util.List DBNodeIds; @com.aliyun.core.annotation.NameInMap("OrderId") private String orderId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private TempModifyDBNodeResponseBody(Builder builder) { this.DBClusterId = builder.DBClusterId; this.DBNodeIds = builder.DBNodeIds; this.orderId = builder.orderId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static TempModifyDBNodeResponseBody create() { return builder().build(); } /** * @return DBClusterId */ public String getDBClusterId() { return this.DBClusterId; } /** * @return DBNodeIds */ public java.util.List getDBNodeIds() { return this.DBNodeIds; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String DBClusterId; private java.util.List DBNodeIds; private String orderId; private String requestId; /** *

The cluster ID.

* * example: *

pc-xxxxxxxxxxxxxxxxx

*/ public Builder DBClusterId(String DBClusterId) { this.DBClusterId = DBClusterId; return this; } /** *

The details of the nodes.

*/ public Builder DBNodeIds(java.util.List DBNodeIds) { this.DBNodeIds = DBNodeIds; return this; } /** *

The ID of the order.

* * example: *

2035638*******

*/ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** *

The request ID.

* * example: *

69A85BAF-1089-4CDF-A82F-0A140F******

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public TempModifyDBNodeResponseBody build() { return new TempModifyDBNodeResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy