com.aliyun.ens20171110.models.StopSnatIpForSnatEntryRequest 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 StopSnatIpForSnatEntryRequest extends TeaModel {
/**
* The ID of the SNAT entry.
* This parameter is required.
*
* example:
* snat-5tfi6f8gds82mjmlofeym****
*/
@NameInMap("SnatEntryId")
public String snatEntryId;
/**
* The EIP specified in the SNAT entry.
* This parameter is required.
*
* example:
* 221.178.103.143
*/
@NameInMap("SnatIp")
public String snatIp;
public static StopSnatIpForSnatEntryRequest build(java.util.Map map) throws Exception {
StopSnatIpForSnatEntryRequest self = new StopSnatIpForSnatEntryRequest();
return TeaModel.build(map, self);
}
public StopSnatIpForSnatEntryRequest setSnatEntryId(String snatEntryId) {
this.snatEntryId = snatEntryId;
return this;
}
public String getSnatEntryId() {
return this.snatEntryId;
}
public StopSnatIpForSnatEntryRequest setSnatIp(String snatIp) {
this.snatIp = snatIp;
return this;
}
public String getSnatIp() {
return this.snatIp;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy