com.aliyun.sdk.service.polardb20170801.models.ModifyDBClusterResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-polardb20170801 Show documentation
Show all versions of alibabacloud-polardb20170801 Show documentation
Alibaba Cloud polardb (20170801) Async SDK for Java
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 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.
*
* example:
* pc-*************
*/
public Builder DBClusterId(String DBClusterId) {
this.DBClusterId = DBClusterId;
return this;
}
/**
* The order ID.
*
* example:
* 2148126708*****
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* The request ID.
*
* example:
* CD3FA5F3-FAF3-44CA-AFFF-BAF869******
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ModifyDBClusterResponseBody build() {
return new ModifyDBClusterResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy