All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.cwp.v20180228.models.ExportAttackLogsRequest Maven / Gradle / Ivy

/*
 * Copyright (c) 2017-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.
 */
package com.tencentcloudapi.cwp.v20180228.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class ExportAttackLogsRequest extends AbstractModel{

    /**
    * 过滤条件。
  • HttpMethod - String - 是否必填:否 - 攻击方法(POST|GET)
  • DateRange - String - 是否必填:否 - 时间范围(存储最近3个月的数据),如最近一个月["2019-11-17", "2019-12-17"]
  • VulType - String 威胁类型 - 是否必填: 否
  • SrcIp - String 攻击源IP - 是否必填: 否
  • DstIp - String 攻击目标IP - 是否必填: 否
  • SrcPort - String 攻击源端口 - 是否必填: 否
  • DstPort - String 攻击目标端口 - 是否必填: 否
  • */ @SerializedName("Filters") @Expose private Filters [] Filters; /** * 主机安全客户端ID */ @SerializedName("Uuid") @Expose private String Uuid; /** * 云主机机器ID */ @SerializedName("Quuid") @Expose private String Quuid; /** * Get 过滤条件。
  • HttpMethod - String - 是否必填:否 - 攻击方法(POST|GET)
  • DateRange - String - 是否必填:否 - 时间范围(存储最近3个月的数据),如最近一个月["2019-11-17", "2019-12-17"]
  • VulType - String 威胁类型 - 是否必填: 否
  • SrcIp - String 攻击源IP - 是否必填: 否
  • DstIp - String 攻击目标IP - 是否必填: 否
  • SrcPort - String 攻击源端口 - 是否必填: 否
  • DstPort - String 攻击目标端口 - 是否必填: 否
  • * @return Filters 过滤条件。
  • HttpMethod - String - 是否必填:否 - 攻击方法(POST|GET)
  • DateRange - String - 是否必填:否 - 时间范围(存储最近3个月的数据),如最近一个月["2019-11-17", "2019-12-17"]
  • VulType - String 威胁类型 - 是否必填: 否
  • SrcIp - String 攻击源IP - 是否必填: 否
  • DstIp - String 攻击目标IP - 是否必填: 否
  • SrcPort - String 攻击源端口 - 是否必填: 否
  • DstPort - String 攻击目标端口 - 是否必填: 否
  • */ public Filters [] getFilters() { return this.Filters; } /** * Set 过滤条件。
  • HttpMethod - String - 是否必填:否 - 攻击方法(POST|GET)
  • DateRange - String - 是否必填:否 - 时间范围(存储最近3个月的数据),如最近一个月["2019-11-17", "2019-12-17"]
  • VulType - String 威胁类型 - 是否必填: 否
  • SrcIp - String 攻击源IP - 是否必填: 否
  • DstIp - String 攻击目标IP - 是否必填: 否
  • SrcPort - String 攻击源端口 - 是否必填: 否
  • DstPort - String 攻击目标端口 - 是否必填: 否
  • * @param Filters 过滤条件。
  • HttpMethod - String - 是否必填:否 - 攻击方法(POST|GET)
  • DateRange - String - 是否必填:否 - 时间范围(存储最近3个月的数据),如最近一个月["2019-11-17", "2019-12-17"]
  • VulType - String 威胁类型 - 是否必填: 否
  • SrcIp - String 攻击源IP - 是否必填: 否
  • DstIp - String 攻击目标IP - 是否必填: 否
  • SrcPort - String 攻击源端口 - 是否必填: 否
  • DstPort - String 攻击目标端口 - 是否必填: 否
  • */ public void setFilters(Filters [] Filters) { this.Filters = Filters; } /** * Get 主机安全客户端ID * @return Uuid 主机安全客户端ID */ public String getUuid() { return this.Uuid; } /** * Set 主机安全客户端ID * @param Uuid 主机安全客户端ID */ public void setUuid(String Uuid) { this.Uuid = Uuid; } /** * Get 云主机机器ID * @return Quuid 云主机机器ID */ public String getQuuid() { return this.Quuid; } /** * Set 云主机机器ID * @param Quuid 云主机机器ID */ public void setQuuid(String Quuid) { this.Quuid = Quuid; } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamArrayObj(map, prefix + "Filters.", this.Filters); this.setParamSimple(map, prefix + "Uuid", this.Uuid); this.setParamSimple(map, prefix + "Quuid", this.Quuid); } }




    © 2015 - 2025 Weber Informatics LLC | Privacy Policy