com.aliyun.eas20210701.models.DeleteAclPolicyRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas20210701 Show documentation
Show all versions of eas20210701 Show documentation
Alibaba Cloud eas (20210701) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;
import com.aliyun.tea.*;
public class DeleteAclPolicyRequest extends TeaModel {
/**
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
*/
@NameInMap("AclPolicyList")
public java.util.List aclPolicyList;
/**
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
*
* example:
* vpc-uf66uio7md****
*/
@NameInMap("VpcId")
public String vpcId;
public static DeleteAclPolicyRequest build(java.util.Map map) throws Exception {
DeleteAclPolicyRequest self = new DeleteAclPolicyRequest();
return TeaModel.build(map, self);
}
public DeleteAclPolicyRequest setAclPolicyList(java.util.List aclPolicyList) {
this.aclPolicyList = aclPolicyList;
return this;
}
public java.util.List getAclPolicyList() {
return this.aclPolicyList;
}
public DeleteAclPolicyRequest setVpcId(String vpcId) {
this.vpcId = vpcId;
return this;
}
public String getVpcId() {
return this.vpcId;
}
public static class DeleteAclPolicyRequestAclPolicyList extends TeaModel {
/**
* The comment on the IP CIDR block in the VPC that can access the private gateway.
*
* example:
* default
*/
@NameInMap("Comment")
public String comment;
/**
* The IP CIDR block in the VPC that can access the private gateway.
*
* example:
* 10.23.XX.XX/32
*/
@NameInMap("Entry")
public String entry;
public static DeleteAclPolicyRequestAclPolicyList build(java.util.Map map) throws Exception {
DeleteAclPolicyRequestAclPolicyList self = new DeleteAclPolicyRequestAclPolicyList();
return TeaModel.build(map, self);
}
public DeleteAclPolicyRequestAclPolicyList setComment(String comment) {
this.comment = comment;
return this;
}
public String getComment() {
return this.comment;
}
public DeleteAclPolicyRequestAclPolicyList setEntry(String entry) {
this.entry = entry;
return this;
}
public String getEntry() {
return this.entry;
}
}
}