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

com.aliyun.eas20210701.models.CreateGatewayIntranetLinkedVpcRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class CreateGatewayIntranetLinkedVpcRequest extends TeaModel {
    /**
     * 

The vSwitch ID.

* * example: *

vsw-8vbqn2at0kljjxxxx****

*/ @NameInMap("VSwitchId") public String vSwitchId; /** *

The virtual private cloud (VPC) ID.

* * example: *

vpc-uf66uio7md****

*/ @NameInMap("VpcId") public String vpcId; public static CreateGatewayIntranetLinkedVpcRequest build(java.util.Map map) throws Exception { CreateGatewayIntranetLinkedVpcRequest self = new CreateGatewayIntranetLinkedVpcRequest(); return TeaModel.build(map, self); } public CreateGatewayIntranetLinkedVpcRequest setVSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; return this; } public String getVSwitchId() { return this.vSwitchId; } public CreateGatewayIntranetLinkedVpcRequest setVpcId(String vpcId) { this.vpcId = vpcId; return this; } public String getVpcId() { return this.vpcId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy