
com.tencentcloudapi.yunjing.v20180228.models.SecurityDynamic 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.yunjing.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 SecurityDynamic extends AbstractModel{
/**
* 云镜客户端UUID。
*/
@SerializedName("Uuid")
@Expose
private String Uuid;
/**
* 安全事件发生事件。
*/
@SerializedName("EventTime")
@Expose
private String EventTime;
/**
* 安全事件类型。
MALWARE:木马事件
NON_LOCAL_LOGIN:异地登录
BRUTEATTACK_SUCCESS:密码破解成功
VUL:漏洞
BASELINE:安全基线
*/
@SerializedName("EventType")
@Expose
private String EventType;
/**
* 安全事件消息。
*/
@SerializedName("Message")
@Expose
private String Message;
/**
* 安全事件等级。
RISK: 严重
HIGH: 高危
NORMAL: 中危
LOW: 低危
*/
@SerializedName("SecurityLevel")
@Expose
private String SecurityLevel;
/**
* Get 云镜客户端UUID。
* @return Uuid 云镜客户端UUID。
*/
public String getUuid() {
return this.Uuid;
}
/**
* Set 云镜客户端UUID。
* @param Uuid 云镜客户端UUID。
*/
public void setUuid(String Uuid) {
this.Uuid = Uuid;
}
/**
* Get 安全事件发生事件。
* @return EventTime 安全事件发生事件。
*/
public String getEventTime() {
return this.EventTime;
}
/**
* Set 安全事件发生事件。
* @param EventTime 安全事件发生事件。
*/
public void setEventTime(String EventTime) {
this.EventTime = EventTime;
}
/**
* Get 安全事件类型。
MALWARE:木马事件
NON_LOCAL_LOGIN:异地登录
BRUTEATTACK_SUCCESS:密码破解成功
VUL:漏洞
BASELINE:安全基线
* @return EventType 安全事件类型。
MALWARE:木马事件
NON_LOCAL_LOGIN:异地登录
BRUTEATTACK_SUCCESS:密码破解成功
VUL:漏洞
BASELINE:安全基线
*/
public String getEventType() {
return this.EventType;
}
/**
* Set 安全事件类型。
MALWARE:木马事件
NON_LOCAL_LOGIN:异地登录
BRUTEATTACK_SUCCESS:密码破解成功
VUL:漏洞
BASELINE:安全基线
* @param EventType 安全事件类型。
MALWARE:木马事件
NON_LOCAL_LOGIN:异地登录
BRUTEATTACK_SUCCESS:密码破解成功
VUL:漏洞
BASELINE:安全基线
*/
public void setEventType(String EventType) {
this.EventType = EventType;
}
/**
* Get 安全事件消息。
* @return Message 安全事件消息。
*/
public String getMessage() {
return this.Message;
}
/**
* Set 安全事件消息。
* @param Message 安全事件消息。
*/
public void setMessage(String Message) {
this.Message = Message;
}
/**
* Get 安全事件等级。
RISK: 严重
HIGH: 高危
NORMAL: 中危
LOW: 低危
* @return SecurityLevel 安全事件等级。
RISK: 严重
HIGH: 高危
NORMAL: 中危
LOW: 低危
*/
public String getSecurityLevel() {
return this.SecurityLevel;
}
/**
* Set 安全事件等级。
RISK: 严重
HIGH: 高危
NORMAL: 中危
LOW: 低危
* @param SecurityLevel 安全事件等级。
RISK: 严重
HIGH: 高危
NORMAL: 中危
LOW: 低危
*/
public void setSecurityLevel(String SecurityLevel) {
this.SecurityLevel = SecurityLevel;
}
public SecurityDynamic() {
}
/**
* 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 SecurityDynamic(SecurityDynamic source) {
if (source.Uuid != null) {
this.Uuid = new String(source.Uuid);
}
if (source.EventTime != null) {
this.EventTime = new String(source.EventTime);
}
if (source.EventType != null) {
this.EventType = new String(source.EventType);
}
if (source.Message != null) {
this.Message = new String(source.Message);
}
if (source.SecurityLevel != null) {
this.SecurityLevel = new String(source.SecurityLevel);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Uuid", this.Uuid);
this.setParamSimple(map, prefix + "EventTime", this.EventTime);
this.setParamSimple(map, prefix + "EventType", this.EventType);
this.setParamSimple(map, prefix + "Message", this.Message);
this.setParamSimple(map, prefix + "SecurityLevel", this.SecurityLevel);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy