
com.tencentcloudapi.teo.v20220901.models.DDoSAttackSourceEvent 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.teo.v20220901.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DDoSAttackSourceEvent extends AbstractModel{
/**
* The attacker IP.
*/
@SerializedName("AttackSourceIp")
@Expose
private String AttackSourceIp;
/**
* The country or region.
*/
@SerializedName("AttackRegion")
@Expose
private String AttackRegion;
/**
* The accumulative attack traffic.
*/
@SerializedName("AttackFlow")
@Expose
private Long AttackFlow;
/**
* The accumulative attack packets.
*/
@SerializedName("AttackPacketNum")
@Expose
private Long AttackPacketNum;
/**
* Get The attacker IP.
* @return AttackSourceIp The attacker IP.
*/
public String getAttackSourceIp() {
return this.AttackSourceIp;
}
/**
* Set The attacker IP.
* @param AttackSourceIp The attacker IP.
*/
public void setAttackSourceIp(String AttackSourceIp) {
this.AttackSourceIp = AttackSourceIp;
}
/**
* Get The country or region.
* @return AttackRegion The country or region.
*/
public String getAttackRegion() {
return this.AttackRegion;
}
/**
* Set The country or region.
* @param AttackRegion The country or region.
*/
public void setAttackRegion(String AttackRegion) {
this.AttackRegion = AttackRegion;
}
/**
* Get The accumulative attack traffic.
* @return AttackFlow The accumulative attack traffic.
*/
public Long getAttackFlow() {
return this.AttackFlow;
}
/**
* Set The accumulative attack traffic.
* @param AttackFlow The accumulative attack traffic.
*/
public void setAttackFlow(Long AttackFlow) {
this.AttackFlow = AttackFlow;
}
/**
* Get The accumulative attack packets.
* @return AttackPacketNum The accumulative attack packets.
*/
public Long getAttackPacketNum() {
return this.AttackPacketNum;
}
/**
* Set The accumulative attack packets.
* @param AttackPacketNum The accumulative attack packets.
*/
public void setAttackPacketNum(Long AttackPacketNum) {
this.AttackPacketNum = AttackPacketNum;
}
public DDoSAttackSourceEvent() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DDoSAttackSourceEvent(DDoSAttackSourceEvent source) {
if (source.AttackSourceIp != null) {
this.AttackSourceIp = new String(source.AttackSourceIp);
}
if (source.AttackRegion != null) {
this.AttackRegion = new String(source.AttackRegion);
}
if (source.AttackFlow != null) {
this.AttackFlow = new Long(source.AttackFlow);
}
if (source.AttackPacketNum != null) {
this.AttackPacketNum = new Long(source.AttackPacketNum);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "AttackSourceIp", this.AttackSourceIp);
this.setParamSimple(map, prefix + "AttackRegion", this.AttackRegion);
this.setParamSimple(map, prefix + "AttackFlow", this.AttackFlow);
this.setParamSimple(map, prefix + "AttackPacketNum", this.AttackPacketNum);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy