Files
g.hnyhua.cn/TencentCloud/Dc/V20180410/Models/CreateDirectConnectTunnelRequest.cs
2026-02-07 15:48:27 +08:00

151 lines
5.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Dc.V20180410.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CreateDirectConnectTunnelRequest : AbstractModel
{
/// <summary>
/// 专线 ID例如dc-kd7d06of
/// </summary>
[JsonProperty("DirectConnectId")]
public string DirectConnectId{ get; set; }
/// <summary>
/// 专用通道名称
/// </summary>
[JsonProperty("DirectConnectTunnelName")]
public string DirectConnectTunnelName{ get; set; }
/// <summary>
/// 物理专线 owner缺省为当前客户物理专线 owner
/// 共享专线时这里需要填写共享专线的开发商账号 ID
/// </summary>
[JsonProperty("DirectConnectOwnerAccount")]
public string DirectConnectOwnerAccount{ get; set; }
/// <summary>
/// 网络类型分别为VPC、BMVPCCCN默认是VPC
/// VPC私有网络
/// BMVPC黑石网络
/// CCN云联网
/// </summary>
[JsonProperty("NetworkType")]
public string NetworkType{ get; set; }
/// <summary>
/// 网络地域
/// </summary>
[JsonProperty("NetworkRegion")]
public string NetworkRegion{ get; set; }
/// <summary>
/// 私有网络统一 ID 或者黑石网络统一 ID
/// </summary>
[JsonProperty("VpcId")]
public string VpcId{ get; set; }
/// <summary>
/// 专线网关 ID例如 dcg-d545ddf
/// </summary>
[JsonProperty("DirectConnectGatewayId")]
public string DirectConnectGatewayId{ get; set; }
/// <summary>
/// 专线带宽单位Mbps
/// 默认是物理专线带宽值
/// </summary>
[JsonProperty("Bandwidth")]
public long? Bandwidth{ get; set; }
/// <summary>
/// BGP BGP路由
/// STATIC静态
/// 默认为 BGP 路由
/// </summary>
[JsonProperty("RouteType")]
public string RouteType{ get; set; }
/// <summary>
/// BgpPeer用户侧bgp信息包括Asn和AuthKey
/// </summary>
[JsonProperty("BgpPeer")]
public BgpPeer BgpPeer{ get; set; }
/// <summary>
/// 静态路由用户IDC的网段地址
/// </summary>
[JsonProperty("RouteFilterPrefixes")]
public RouteFilterPrefix[] RouteFilterPrefixes{ get; set; }
/// <summary>
/// vlan范围0 ~ 3000
/// 0不开启子接口
/// 默认值是非0
/// </summary>
[JsonProperty("Vlan")]
public long? Vlan{ get; set; }
/// <summary>
/// TencentAddress腾讯侧互联 IP
/// </summary>
[JsonProperty("TencentAddress")]
public string TencentAddress{ get; set; }
/// <summary>
/// CustomerAddress用户侧互联 IP
/// </summary>
[JsonProperty("CustomerAddress")]
public string CustomerAddress{ get; set; }
/// <summary>
/// TencentBackupAddress腾讯侧备用互联 IP
/// </summary>
[JsonProperty("TencentBackupAddress")]
public string TencentBackupAddress{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "DirectConnectId", this.DirectConnectId);
this.SetParamSimple(map, prefix + "DirectConnectTunnelName", this.DirectConnectTunnelName);
this.SetParamSimple(map, prefix + "DirectConnectOwnerAccount", this.DirectConnectOwnerAccount);
this.SetParamSimple(map, prefix + "NetworkType", this.NetworkType);
this.SetParamSimple(map, prefix + "NetworkRegion", this.NetworkRegion);
this.SetParamSimple(map, prefix + "VpcId", this.VpcId);
this.SetParamSimple(map, prefix + "DirectConnectGatewayId", this.DirectConnectGatewayId);
this.SetParamSimple(map, prefix + "Bandwidth", this.Bandwidth);
this.SetParamSimple(map, prefix + "RouteType", this.RouteType);
this.SetParamObj(map, prefix + "BgpPeer.", this.BgpPeer);
this.SetParamArrayObj(map, prefix + "RouteFilterPrefixes.", this.RouteFilterPrefixes);
this.SetParamSimple(map, prefix + "Vlan", this.Vlan);
this.SetParamSimple(map, prefix + "TencentAddress", this.TencentAddress);
this.SetParamSimple(map, prefix + "CustomerAddress", this.CustomerAddress);
this.SetParamSimple(map, prefix + "TencentBackupAddress", this.TencentBackupAddress);
}
}
}