/* * 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.Tics.V20181115.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class DescribeDomainInfoResponse : AbstractModel { /// /// 是否有数据,0代表有数据,1代表没有数据 /// [JsonProperty("ReturnCode")] public ulong? ReturnCode{ get; set; } /// /// 判定结果,如:black、white、grey /// [JsonProperty("Result")] public string Result{ get; set; } /// /// 置信度,取值0-100 /// [JsonProperty("Confidence")] public ulong? Confidence{ get; set; } /// /// 威胁类型。 /// botnet = 僵尸网络 /// trojan = 木马 /// ransomware = 勒索软件 /// worm = 蠕虫 /// dga = 域名生成算法 /// c2 = c&c /// compromised = 失陷主机 /// dynamicIP = 动态IP /// proxy = 代理 /// idc = idc 机房 /// whitelist = 白名单 /// tor = 暗网 /// miner = 挖矿 /// maleware site = 恶意站点 /// malware IP = 恶意IP /// 等等 /// [JsonProperty("ThreatTypes")] public string[] ThreatTypes{ get; set; } /// /// 恶意标签,对应的团伙,家族等信息。 /// [JsonProperty("Tags")] public TagType[] Tags{ get; set; } /// /// 对应的历史上的威胁情报事件 /// [JsonProperty("Intelligences")] public IntelligenceType[] Intelligences{ get; set; } /// /// 情报相关的上下文 /// [JsonProperty("Context")] public string Context{ get; set; } /// /// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 /// [JsonProperty("RequestId")] public string RequestId{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "ReturnCode", this.ReturnCode); this.SetParamSimple(map, prefix + "Result", this.Result); this.SetParamSimple(map, prefix + "Confidence", this.Confidence); this.SetParamArraySimple(map, prefix + "ThreatTypes.", this.ThreatTypes); this.SetParamArrayObj(map, prefix + "Tags.", this.Tags); this.SetParamArrayObj(map, prefix + "Intelligences.", this.Intelligences); this.SetParamSimple(map, prefix + "Context", this.Context); this.SetParamSimple(map, prefix + "RequestId", this.RequestId); } } }