com.aliyun.sdk.service.dts20200101.models.WhiteIpListResponseBody Maven / Gradle / Ivy
Show all versions of alibabacloud-dts20200101 Show documentation
// 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 WhiteIpListResponseBody} extends {@link TeaModel}
*
* WhiteIpListResponseBody
*/
public class WhiteIpListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("DynamicCode")
private String dynamicCode;
@com.aliyun.core.annotation.NameInMap("DynamicMessage")
private String dynamicMessage;
@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 Integer httpStatusCode;
@com.aliyun.core.annotation.NameInMap("IpList")
private String ipList;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("Success")
private Boolean success;
private WhiteIpListResponseBody(Builder builder) {
this.dynamicCode = builder.dynamicCode;
this.dynamicMessage = builder.dynamicMessage;
this.errCode = builder.errCode;
this.errMessage = builder.errMessage;
this.httpStatusCode = builder.httpStatusCode;
this.ipList = builder.ipList;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static WhiteIpListResponseBody create() {
return builder().build();
}
/**
* @return dynamicCode
*/
public String getDynamicCode() {
return this.dynamicCode;
}
/**
* @return dynamicMessage
*/
public String getDynamicMessage() {
return this.dynamicMessage;
}
/**
* @return errCode
*/
public String getErrCode() {
return this.errCode;
}
/**
* @return errMessage
*/
public String getErrMessage() {
return this.errMessage;
}
/**
* @return httpStatusCode
*/
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return ipList
*/
public String getIpList() {
return this.ipList;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String dynamicCode;
private String dynamicMessage;
private String errCode;
private String errMessage;
private Integer httpStatusCode;
private String ipList;
private String requestId;
private Boolean success;
/**
* DynamicCode.
*/
public Builder dynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
return this;
}
/**
* The dynamic error code. This parameter will be removed in the future.
*/
public Builder dynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
return this;
}
/**
* Indicates whether the call was successful. Valid values:
*
*
* * **true**: The call was successful.
* * **false**: The call failed.
*/
public Builder errCode(String errCode) {
this.errCode = errCode;
return this;
}
/**
* The CIDR blocks of DTS servers. Multiple CIDR blocks are separated by commas (,).
*/
public Builder errMessage(String errMessage) {
this.errMessage = errMessage;
return this;
}
/**
* The ID of the request.
*/
public Builder httpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* The dynamic part in the error message. This parameter is used to replace **%s** in the **ErrMessage** parameter.
*/
public Builder ipList(String ipList) {
this.ipList = ipList;
return this;
}
/**
* The error code returned if the call failed.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The error message returned if the call failed.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public WhiteIpListResponseBody build() {
return new WhiteIpListResponseBody(this);
}
}
}