com.aliyun.sdk.service.polardb20170801.models.DeleteDBNodesResponseBody 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 DeleteDBNodesResponseBody} extends {@link TeaModel}
*
* DeleteDBNodesResponseBody
*/
public class DeleteDBNodesResponseBody 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 DeleteDBNodesResponseBody(Builder builder) {
this.DBClusterId = builder.DBClusterId;
this.orderId = builder.orderId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteDBNodesResponseBody 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 ID of the cluster.
*
* example:
* pc-**************
*/
public Builder DBClusterId(String DBClusterId) {
this.DBClusterId = DBClusterId;
return this;
}
/**
* The ID of the order.
*
* example:
* 2035638*******
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* The ID of the request.
*
* example:
* 6566B2E6-3157-4B57-A693-AFB751******
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteDBNodesResponseBody build() {
return new DeleteDBNodesResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy