com.aliyun.sdk.service.ens20171110.models.CreateSnatEntryResponseBody 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 CreateSnatEntryResponseBody} extends {@link TeaModel}
*
* CreateSnatEntryResponseBody
*/
public class CreateSnatEntryResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("SnatEntryId")
private String snatEntryId;
private CreateSnatEntryResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.snatEntryId = builder.snatEntryId;
}
public static Builder builder() {
return new Builder();
}
public static CreateSnatEntryResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return snatEntryId
*/
public String getSnatEntryId() {
return this.snatEntryId;
}
public static final class Builder {
private String requestId;
private String snatEntryId;
/**
* The ID of the request.
*
* example:
* 018EED6A-69CA-58C8-A345-498927D5D34E
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The ID of the SNAT entry.
*
* example:
* snat-5tc08qfj5ecblfdn2rqr9****
*/
public Builder snatEntryId(String snatEntryId) {
this.snatEntryId = snatEntryId;
return this;
}
public CreateSnatEntryResponseBody build() {
return new CreateSnatEntryResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy