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

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

There is a newer version: 4.0.29
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.polardb20170801.models;

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

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

ModifyDBClusterResponseBody

*/ public class ModifyDBClusterResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("DBClusterId") private String DBClusterId; @com.aliyun.core.annotation.NameInMap("OrderId") private String orderId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private ModifyDBClusterResponseBody(Builder builder) { this.DBClusterId = builder.DBClusterId; this.orderId = builder.orderId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static ModifyDBClusterResponseBody create() { return builder().build(); } /** * @return DBClusterId */ public String getDBClusterId() { return this.DBClusterId; } /** * @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 String orderId; private String requestId; /** * The cluster ID. */ public Builder DBClusterId(String DBClusterId) { this.DBClusterId = DBClusterId; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public ModifyDBClusterResponseBody build() { return new ModifyDBClusterResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy