All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ens20171110.models.StartSnatIpForSnatEntryRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class StartSnatIpForSnatEntryRequest 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: *

219.152.82.143

*/ @NameInMap("SnatIp") public String snatIp; public static StartSnatIpForSnatEntryRequest build(java.util.Map map) throws Exception { StartSnatIpForSnatEntryRequest self = new StartSnatIpForSnatEntryRequest(); return TeaModel.build(map, self); } public StartSnatIpForSnatEntryRequest setSnatEntryId(String snatEntryId) { this.snatEntryId = snatEntryId; return this; } public String getSnatEntryId() { return this.snatEntryId; } public StartSnatIpForSnatEntryRequest setSnatIp(String snatIp) { this.snatIp = snatIp; return this; } public String getSnatIp() { return this.snatIp; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy