com.aliyun.eas20210701.models.CreateGatewayIntranetLinkedVpcRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas20210701 Show documentation
Show all versions of eas20210701 Show documentation
Alibaba Cloud eas (20210701) SDK for Java
// 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;
}
}