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

com.aliyun.sdk.service.dts20200101.models.InitDtsRdsInstanceResponseBody Maven / Gradle / Ivy

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

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

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

InitDtsRdsInstanceResponseBody

*/ public class InitDtsRdsInstanceResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("AdminAccount") private String adminAccount; @com.aliyun.core.annotation.NameInMap("AdminPassword") private String adminPassword; @com.aliyun.core.annotation.NameInMap("ErrCode") private String errCode; @com.aliyun.core.annotation.NameInMap("ErrMessage") private String errMessage; @com.aliyun.core.annotation.NameInMap("HttpStatusCode") private String httpStatusCode; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Success") private String success; private InitDtsRdsInstanceResponseBody(Builder builder) { this.adminAccount = builder.adminAccount; this.adminPassword = builder.adminPassword; this.errCode = builder.errCode; this.errMessage = builder.errMessage; this.httpStatusCode = builder.httpStatusCode; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static InitDtsRdsInstanceResponseBody create() { return builder().build(); } /** * @return adminAccount */ public String getAdminAccount() { return this.adminAccount; } /** * @return adminPassword */ public String getAdminPassword() { return this.adminPassword; } /** * @return errCode */ public String getErrCode() { return this.errCode; } /** * @return errMessage */ public String getErrMessage() { return this.errMessage; } /** * @return httpStatusCode */ public String getHttpStatusCode() { return this.httpStatusCode; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public String getSuccess() { return this.success; } public static final class Builder { private String adminAccount; private String adminPassword; private String errCode; private String errMessage; private String httpStatusCode; private String requestId; private String success; /** * The built-in account that is used by DTS to connect to the node. */ public Builder adminAccount(String adminAccount) { this.adminAccount = adminAccount; return this; } /** * The password of the built-in account. */ public Builder adminPassword(String adminPassword) { this.adminPassword = adminPassword; return this; } /** * The error code returned if the request fails. */ public Builder errCode(String errCode) { this.errCode = errCode; return this; } /** * The error message returned if the request fails. */ public Builder errMessage(String errMessage) { this.errMessage = errMessage; return this; } /** * The HTTP status code. */ public Builder httpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Indicates whether the request is successful. */ public Builder success(String success) { this.success = success; return this; } public InitDtsRdsInstanceResponseBody build() { return new InitDtsRdsInstanceResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy