com.aliyun.sdk.service.polardb20170801.models.CheckDBNameResponseBody 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
// 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 CheckDBNameResponseBody} extends {@link TeaModel}
*
* CheckDBNameResponseBody
*/
public class CheckDBNameResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("DBName")
private String DBName;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private CheckDBNameResponseBody(Builder builder) {
this.DBName = builder.DBName;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CheckDBNameResponseBody create() {
return builder().build();
}
/**
* @return DBName
*/
public String getDBName() {
return this.DBName;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String DBName;
private String requestId;
/**
* The name of the database.
*
* example:
* test_db
*/
public Builder DBName(String DBName) {
this.DBName = DBName;
return this;
}
/**
* The ID of the request.
*
* example:
* CDB3258F-B5DE-43C4-8935-CBA0CA******
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CheckDBNameResponseBody build() {
return new CheckDBNameResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy