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

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

There is a newer version: 7.4.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class CreateNatGatewayResponseBody extends TeaModel {
    /**
     * 

The ID of the NAT gateway.

* * example: *

nat-5t7nh1cfm6kxiszlttr38****

*/ @NameInMap("NatGatewayId") public String natGatewayId; /** *

The ID of the request.

* * example: *

473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E

*/ @NameInMap("RequestId") public String requestId; public static CreateNatGatewayResponseBody build(java.util.Map map) throws Exception { CreateNatGatewayResponseBody self = new CreateNatGatewayResponseBody(); return TeaModel.build(map, self); } public CreateNatGatewayResponseBody setNatGatewayId(String natGatewayId) { this.natGatewayId = natGatewayId; return this; } public String getNatGatewayId() { return this.natGatewayId; } public CreateNatGatewayResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy