com.aliyun.sdk.service.cloudapi20160714.models.ModifyIntranetDomainPolicyRequest 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
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ModifyIntranetDomainPolicyRequest} extends {@link RequestModel}
*
* ModifyIntranetDomainPolicyRequest
*/
public class ModifyIntranetDomainPolicyRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("GroupId")
@com.aliyun.core.annotation.Validation(required = true)
private String groupId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("SecurityToken")
private String securityToken;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("VpcIntranetEnable")
@com.aliyun.core.annotation.Validation(required = true)
private Boolean vpcIntranetEnable;
private ModifyIntranetDomainPolicyRequest(Builder builder) {
super(builder);
this.groupId = builder.groupId;
this.securityToken = builder.securityToken;
this.vpcIntranetEnable = builder.vpcIntranetEnable;
}
public static Builder builder() {
return new Builder();
}
public static ModifyIntranetDomainPolicyRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return groupId
*/
public String getGroupId() {
return this.groupId;
}
/**
* @return securityToken
*/
public String getSecurityToken() {
return this.securityToken;
}
/**
* @return vpcIntranetEnable
*/
public Boolean getVpcIntranetEnable() {
return this.vpcIntranetEnable;
}
public static final class Builder extends Request.Builder {
private String groupId;
private String securityToken;
private Boolean vpcIntranetEnable;
private Builder() {
super();
}
private Builder(ModifyIntranetDomainPolicyRequest request) {
super(request);
this.groupId = request.groupId;
this.securityToken = request.securityToken;
this.vpcIntranetEnable = request.vpcIntranetEnable;
}
/**
* The ID of the API group. This ID is generated by the system and globally unique.
*/
public Builder groupId(String groupId) {
this.putQueryParameter("GroupId", groupId);
this.groupId = groupId;
return this;
}
/**
* SecurityToken.
*/
public Builder securityToken(String securityToken) {
this.putQueryParameter("SecurityToken", securityToken);
this.securityToken = securityToken;
return this;
}
/**
* Specifies whether to enable the VPC domain name. Valid values:
*
*
* * TRUE
* * FALSE
*/
public Builder vpcIntranetEnable(Boolean vpcIntranetEnable) {
this.putQueryParameter("VpcIntranetEnable", vpcIntranetEnable);
this.vpcIntranetEnable = vpcIntranetEnable;
return this;
}
@Override
public ModifyIntranetDomainPolicyRequest build() {
return new ModifyIntranetDomainPolicyRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy