93 lines
3.2 KiB
C#
93 lines
3.2 KiB
C#
/*
|
||
* 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
|
||
{
|
||
|
||
/// <summary>
|
||
/// 专用通道ID
|
||
/// </summary>
|
||
[JsonProperty("DirectConnectTunnelId")]
|
||
public string DirectConnectTunnelId{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 专用通道名称
|
||
/// </summary>
|
||
[JsonProperty("DirectConnectTunnelName")]
|
||
public string DirectConnectTunnelName{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 用户侧BGP,包括Asn,AuthKey
|
||
/// </summary>
|
||
[JsonProperty("BgpPeer")]
|
||
public BgpPeer BgpPeer{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 用户侧网段地址
|
||
/// </summary>
|
||
[JsonProperty("RouteFilterPrefixes")]
|
||
public RouteFilterPrefix[] RouteFilterPrefixes{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 腾讯侧互联IP
|
||
/// </summary>
|
||
[JsonProperty("TencentAddress")]
|
||
public string TencentAddress{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 用户侧互联IP
|
||
/// </summary>
|
||
[JsonProperty("CustomerAddress")]
|
||
public string CustomerAddress{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 专用通道带宽值,单位为M。
|
||
/// </summary>
|
||
[JsonProperty("Bandwidth")]
|
||
public long? Bandwidth{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 腾讯侧备用互联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 + "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);
|
||
}
|
||
}
|
||
}
|
||
|