Files
g.hnyhua.cn/TencentCloud/Tics/V20181115/Models/DescribeThreatInfoResponse.cs
2026-02-07 15:48:27 +08:00

115 lines
3.7 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.Tics.V20181115.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeThreatInfoResponse : AbstractModel
{
/// <summary>
/// 是否有数据0代表有数据1代表没有数据
/// </summary>
[JsonProperty("ReturnCode")]
public ulong? ReturnCode{ get; set; }
/// <summary>
/// 判定结果black、white、grey
/// </summary>
[JsonProperty("Result")]
public string Result{ get; set; }
/// <summary>
/// 置信度取值0-100
/// </summary>
[JsonProperty("Confidence")]
public ulong? Confidence{ get; set; }
/// <summary>
/// 威胁类型。
/// botnet = 僵尸网络
/// trojan = 木马
/// ransomware = 勒索软件
/// worm = 蠕虫
/// dga = 域名生成算法
/// c2 = c&c
/// compromised = 失陷主机
/// dynamicIP = 动态IP
/// proxy = 代理
/// idc = idc 机房
/// whitelist = 白名单
/// tor = 暗网
/// miner = 挖矿
/// maleware site = 恶意站点
/// malware IP = 恶意IP
/// 等等
/// </summary>
[JsonProperty("ThreatTypes")]
public string[] ThreatTypes{ get; set; }
/// <summary>
/// 恶意标签,对应的团伙,家族等信息。
/// </summary>
[JsonProperty("Tags")]
public string[] Tags{ get; set; }
/// <summary>
/// 当前状态
/// active = 活跃
/// sinkholed = sinkholed
/// inactive = 不活跃
/// unknown = 未知
/// expired = 过期
/// </summary>
[JsonProperty("Status")]
public string Status{ get; set; }
/// <summary>
/// 情报相关的上下文参数option=1 的时候提供
/// 每个数据默认为3 条
/// </summary>
[JsonProperty("Context")]
public string Context{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ 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 + "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.SetParamArraySimple(map, prefix + "Tags.", this.Tags);
this.SetParamSimple(map, prefix + "Status", this.Status);
this.SetParamSimple(map, prefix + "Context", this.Context);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}