com.aliyun.eas20210701.models.DescribeResourceDLinkResponseBody 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
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;
import com.aliyun.tea.*;
public class DescribeResourceDLinkResponseBody extends TeaModel {
/**
* The IDs of the secondary vSwitches that are directly connected.
*/
@NameInMap("AuxVSwitchList")
public java.util.List auxVSwitchList;
/**
* The CIDR blocks of the clients that you want to connect to. After this parameter is specified, the CIDR blocks are added to the back-to-origin route of the server. Either this parameter or the VSwitchIdList parameter can be used to determine CIDR blocks.
*
* example:
* 72.16.0.0/16
*/
@NameInMap("DestinationCIDRs")
public String destinationCIDRs;
/**
* The request ID.
*
* example:
* 40325405-579C-4D82****
*/
@NameInMap("RequestId")
public String requestId;
/**
* The ID of the security group that is directly connected.
*
* example:
* sg-bp1j1z7297hcink9d****
*/
@NameInMap("SecurityGroupId")
public String securityGroupId;
/**
* The ID of the primary vSwitch that is directly connected.
*
* example:
* vsw-8vbqn2at0kljjxxxx****
*/
@NameInMap("VSwitchId")
public String vSwitchId;
/**
* The ID of the VPC that is directly connected.
*
* example:
* vpc-uf66uio7md****
*/
@NameInMap("VpcId")
public String vpcId;
public static DescribeResourceDLinkResponseBody build(java.util.Map map) throws Exception {
DescribeResourceDLinkResponseBody self = new DescribeResourceDLinkResponseBody();
return TeaModel.build(map, self);
}
public DescribeResourceDLinkResponseBody setAuxVSwitchList(java.util.List auxVSwitchList) {
this.auxVSwitchList = auxVSwitchList;
return this;
}
public java.util.List getAuxVSwitchList() {
return this.auxVSwitchList;
}
public DescribeResourceDLinkResponseBody setDestinationCIDRs(String destinationCIDRs) {
this.destinationCIDRs = destinationCIDRs;
return this;
}
public String getDestinationCIDRs() {
return this.destinationCIDRs;
}
public DescribeResourceDLinkResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DescribeResourceDLinkResponseBody setSecurityGroupId(String securityGroupId) {
this.securityGroupId = securityGroupId;
return this;
}
public String getSecurityGroupId() {
return this.securityGroupId;
}
public DescribeResourceDLinkResponseBody setVSwitchId(String vSwitchId) {
this.vSwitchId = vSwitchId;
return this;
}
public String getVSwitchId() {
return this.vSwitchId;
}
public DescribeResourceDLinkResponseBody setVpcId(String vpcId) {
this.vpcId = vpcId;
return this;
}
public String getVpcId() {
return this.vpcId;
}
}