/* * 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 ModifyDirectConnectTunnelAttributeRequest : AbstractModel { /// /// 专用通道ID /// [JsonProperty("DirectConnectTunnelId")] public string DirectConnectTunnelId{ get; set; } /// /// 专用通道名称 /// [JsonProperty("DirectConnectTunnelName")] public string DirectConnectTunnelName{ get; set; } /// /// 用户侧BGP,包括Asn,AuthKey /// [JsonProperty("BgpPeer")] public BgpPeer BgpPeer{ get; set; } /// /// 用户侧网段地址 /// [JsonProperty("RouteFilterPrefixes")] public RouteFilterPrefix[] RouteFilterPrefixes{ get; set; } /// /// 腾讯侧互联IP /// [JsonProperty("TencentAddress")] public string TencentAddress{ get; set; } /// /// 用户侧互联IP /// [JsonProperty("CustomerAddress")] public string CustomerAddress{ get; set; } /// /// 专用通道带宽值,单位为M。 /// [JsonProperty("Bandwidth")] public long? Bandwidth{ get; set; } /// /// 腾讯侧备用互联IP /// [JsonProperty("TencentBackupAddress")] public string TencentBackupAddress{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "DirectConnectTunnelId", this.DirectConnectTunnelId); this.SetParamSimple(map, prefix + "DirectConnectTunnelName", this.DirectConnectTunnelName); this.SetParamObj(map, prefix + "BgpPeer.", this.BgpPeer); this.SetParamArrayObj(map, prefix + "RouteFilterPrefixes.", this.RouteFilterPrefixes); this.SetParamSimple(map, prefix + "TencentAddress", this.TencentAddress); this.SetParamSimple(map, prefix + "CustomerAddress", this.CustomerAddress); this.SetParamSimple(map, prefix + "Bandwidth", this.Bandwidth); this.SetParamSimple(map, prefix + "TencentBackupAddress", this.TencentBackupAddress); } } }