/* * 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.Yunjing.V20180228.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class DescribeAttackLogInfoResponse : AbstractModel { /// /// 日志ID /// [JsonProperty("Id")] public ulong? Id{ get; set; } /// /// 主机ID /// [JsonProperty("Quuid")] public string Quuid{ get; set; } /// /// 攻击来源端口 /// [JsonProperty("SrcPort")] public ulong? SrcPort{ get; set; } /// /// 攻击来源IP /// [JsonProperty("SrcIp")] public string SrcIp{ get; set; } /// /// 攻击目标端口 /// [JsonProperty("DstPort")] public ulong? DstPort{ get; set; } /// /// 攻击目标IP /// [JsonProperty("DstIp")] public string DstIp{ get; set; } /// /// 攻击方法 /// [JsonProperty("HttpMethod")] public string HttpMethod{ get; set; } /// /// 攻击目标主机 /// [JsonProperty("HttpHost")] public string HttpHost{ get; set; } /// /// 攻击头信息 /// [JsonProperty("HttpHead")] public string HttpHead{ get; set; } /// /// 攻击者浏览器标识 /// [JsonProperty("HttpUserAgent")] public string HttpUserAgent{ get; set; } /// /// 请求源 /// [JsonProperty("HttpReferer")] public string HttpReferer{ get; set; } /// /// 威胁类型 /// [JsonProperty("VulType")] public string VulType{ get; set; } /// /// 攻击路径 /// [JsonProperty("HttpCgi")] public string HttpCgi{ get; set; } /// /// 攻击参数 /// [JsonProperty("HttpParam")] public string HttpParam{ get; set; } /// /// 攻击时间 /// [JsonProperty("CreatedAt")] public string CreatedAt{ get; set; } /// /// 攻击内容 /// [JsonProperty("HttpContent")] public string HttpContent{ 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 + "Id", this.Id); this.SetParamSimple(map, prefix + "Quuid", this.Quuid); this.SetParamSimple(map, prefix + "SrcPort", this.SrcPort); this.SetParamSimple(map, prefix + "SrcIp", this.SrcIp); this.SetParamSimple(map, prefix + "DstPort", this.DstPort); this.SetParamSimple(map, prefix + "DstIp", this.DstIp); this.SetParamSimple(map, prefix + "HttpMethod", this.HttpMethod); this.SetParamSimple(map, prefix + "HttpHost", this.HttpHost); this.SetParamSimple(map, prefix + "HttpHead", this.HttpHead); this.SetParamSimple(map, prefix + "HttpUserAgent", this.HttpUserAgent); this.SetParamSimple(map, prefix + "HttpReferer", this.HttpReferer); this.SetParamSimple(map, prefix + "VulType", this.VulType); this.SetParamSimple(map, prefix + "HttpCgi", this.HttpCgi); this.SetParamSimple(map, prefix + "HttpParam", this.HttpParam); this.SetParamSimple(map, prefix + "CreatedAt", this.CreatedAt); this.SetParamSimple(map, prefix + "HttpContent", this.HttpContent); this.SetParamSimple(map, prefix + "RequestId", this.RequestId); } } }