/* * 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.Dayu.V20180709.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class SchedulingDomain : AbstractModel { /// /// 调度域名 /// [JsonProperty("Domain")] public string Domain{ get; set; } /// /// BGP线路IP列表 /// [JsonProperty("BGPIpList")] public string[] BGPIpList{ get; set; } /// /// 电信线路IP列表 /// [JsonProperty("CTCCIpList")] public string[] CTCCIpList{ get; set; } /// /// 联通线路IP列表 /// [JsonProperty("CUCCIpList")] public string[] CUCCIpList{ get; set; } /// /// 移动线路IP列表 /// [JsonProperty("CMCCIpList")] public string[] CMCCIpList{ get; set; } /// /// 海外线路IP列表 /// [JsonProperty("OverseaIpList")] public string[] OverseaIpList{ get; set; } /// /// 调度方式,当前仅支持优先级, 取值为priority /// [JsonProperty("Method")] public string Method{ get; set; } /// /// 创建时间 /// [JsonProperty("CreateTime")] public string CreateTime{ get; set; } /// /// ttl /// [JsonProperty("TTL")] public ulong? TTL{ get; set; } /// /// 状态 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Status")] public ulong? Status{ get; set; } /// /// 修改时间 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ModifyTime")] public string ModifyTime{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "Domain", this.Domain); this.SetParamArraySimple(map, prefix + "BGPIpList.", this.BGPIpList); this.SetParamArraySimple(map, prefix + "CTCCIpList.", this.CTCCIpList); this.SetParamArraySimple(map, prefix + "CUCCIpList.", this.CUCCIpList); this.SetParamArraySimple(map, prefix + "CMCCIpList.", this.CMCCIpList); this.SetParamArraySimple(map, prefix + "OverseaIpList.", this.OverseaIpList); this.SetParamSimple(map, prefix + "Method", this.Method); this.SetParamSimple(map, prefix + "CreateTime", this.CreateTime); this.SetParamSimple(map, prefix + "TTL", this.TTL); this.SetParamSimple(map, prefix + "Status", this.Status); this.SetParamSimple(map, prefix + "ModifyTime", this.ModifyTime); } } }