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
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;
import com.aliyun.tea.*;
public class DeleteAclPolicyRequest extends TeaModel {
@NameInMap("AclPolicyList")
public java.util.List aclPolicyList;
/**
* 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 {
/**
* example:
* default
*/
@NameInMap("Comment")
public String comment;
/**
* 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;
}
}
}