com.aliyun.ens20171110.models.DeleteNetworkAclEntryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class DeleteNetworkAclEntryRequest extends TeaModel {
/**
* The ID of the network ACL for which you want to delete a rule.
*
* example:
* nae-5****
*/
@NameInMap("NetworkAclEntryId")
public String networkAclEntryId;
public static DeleteNetworkAclEntryRequest build(java.util.Map map) throws Exception {
DeleteNetworkAclEntryRequest self = new DeleteNetworkAclEntryRequest();
return TeaModel.build(map, self);
}
public DeleteNetworkAclEntryRequest setNetworkAclEntryId(String networkAclEntryId) {
this.networkAclEntryId = networkAclEntryId;
return this;
}
public String getNetworkAclEntryId() {
return this.networkAclEntryId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy