com.aliyun.sdk.service.ens20171110.models.CreateNetworkAclEntryResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ens20171110 Show documentation
Show all versions of alibabacloud-ens20171110 Show documentation
Alibaba Cloud Ens (20171110) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.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 CreateNetworkAclEntryResponseBody} extends {@link TeaModel}
*
* CreateNetworkAclEntryResponseBody
*/
public class CreateNetworkAclEntryResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("NetworkAclEntryId")
private String networkAclEntryId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private CreateNetworkAclEntryResponseBody(Builder builder) {
this.networkAclEntryId = builder.networkAclEntryId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateNetworkAclEntryResponseBody create() {
return builder().build();
}
/**
* @return networkAclEntryId
*/
public String getNetworkAclEntryId() {
return this.networkAclEntryId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String networkAclEntryId;
private String requestId;
/**
* The ID of the network ACL.
*
* example:
* nae-5****
*/
public Builder networkAclEntryId(String networkAclEntryId) {
this.networkAclEntryId = networkAclEntryId;
return this;
}
/**
* The ID of the request.
*
* example:
* CEF72CEB-54B6-4AE8-B225-F876FF7BA984
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateNetworkAclEntryResponseBody build() {
return new CreateNetworkAclEntryResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy