com.aliyun.sdk.service.cloudapi20160714.models.SetDomainResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Alibaba Cloud CloudAPI (20160714) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.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 SetDomainResponseBody} extends {@link TeaModel}
*
* SetDomainResponseBody
*/
public class SetDomainResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("DomainBindingStatus")
private String domainBindingStatus;
@com.aliyun.core.annotation.NameInMap("DomainLegalStatus")
private String domainLegalStatus;
@com.aliyun.core.annotation.NameInMap("DomainName")
private String domainName;
@com.aliyun.core.annotation.NameInMap("DomainRemark")
private String domainRemark;
@com.aliyun.core.annotation.NameInMap("DomainWebSocketStatus")
private String domainWebSocketStatus;
@com.aliyun.core.annotation.NameInMap("GroupId")
private String groupId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("SubDomain")
private String subDomain;
private SetDomainResponseBody(Builder builder) {
this.domainBindingStatus = builder.domainBindingStatus;
this.domainLegalStatus = builder.domainLegalStatus;
this.domainName = builder.domainName;
this.domainRemark = builder.domainRemark;
this.domainWebSocketStatus = builder.domainWebSocketStatus;
this.groupId = builder.groupId;
this.requestId = builder.requestId;
this.subDomain = builder.subDomain;
}
public static Builder builder() {
return new Builder();
}
public static SetDomainResponseBody create() {
return builder().build();
}
/**
* @return domainBindingStatus
*/
public String getDomainBindingStatus() {
return this.domainBindingStatus;
}
/**
* @return domainLegalStatus
*/
public String getDomainLegalStatus() {
return this.domainLegalStatus;
}
/**
* @return domainName
*/
public String getDomainName() {
return this.domainName;
}
/**
* @return domainRemark
*/
public String getDomainRemark() {
return this.domainRemark;
}
/**
* @return domainWebSocketStatus
*/
public String getDomainWebSocketStatus() {
return this.domainWebSocketStatus;
}
/**
* @return groupId
*/
public String getGroupId() {
return this.groupId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return subDomain
*/
public String getSubDomain() {
return this.subDomain;
}
public static final class Builder {
private String domainBindingStatus;
private String domainLegalStatus;
private String domainName;
private String domainRemark;
private String domainWebSocketStatus;
private String groupId;
private String requestId;
private String subDomain;
/**
* The binding status of the custom domain name. Valid values:
*
* - BINDING: The domain name has been bound.
* - BOUND: The domain name has not been bound.
*
*
* example:
* BINDING
*/
public Builder domainBindingStatus(String domainBindingStatus) {
this.domainBindingStatus = domainBindingStatus;
return this;
}
/**
* The validity status of the domain name. Valid values:
*
* - NORMAL: The domain name is valid.
* - ABNORMAL: The domain name is invalid. This status affects API calls and must be resolved as soon as possible.
*
*
* example:
* NORMAL
*/
public Builder domainLegalStatus(String domainLegalStatus) {
this.domainLegalStatus = domainLegalStatus;
return this;
}
/**
* The custom domain name.
*
* example:
* api.demo.com
*/
public Builder domainName(String domainName) {
this.domainName = domainName;
return this;
}
/**
* The remarks on the domain name, such as the cause of an exception.
*
* example:
* None
*/
public Builder domainRemark(String domainRemark) {
this.domainRemark = domainRemark;
return this;
}
/**
* The status of the domain name that uses the WebSocket feature.
*
* example:
* NORMAL
*/
public Builder domainWebSocketStatus(String domainWebSocketStatus) {
this.domainWebSocketStatus = domainWebSocketStatus;
return this;
}
/**
* The ID of the API group. This ID is generated by the system and globally unique.
*
* example:
* 927d50c0f2e54b359919923d908bb015
*/
public Builder groupId(String groupId) {
this.groupId = groupId;
return this;
}
/**
* The ID of the request.
*
* example:
* 0AA90E87-3506-5AA6-AFFB-A4D53B4F6231
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The second-level domain name assigned to the API group. This domain name is used to test API calls.
*
* example:
* xxx-cn-hangzhou.alicloudapi.com
*/
public Builder subDomain(String subDomain) {
this.subDomain = subDomain;
return this;
}
public SetDomainResponseBody build() {
return new SetDomainResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy