com.aliyun.sas20181203.models.UpdateAlarmEventRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class UpdateAlarmEventRequest extends TeaModel {
/**
* The IDs of the alert events.
*/
@NameInMap("AlarmEventIdList")
public java.util.List alarmEventIdList;
/**
* The language of the content within the request and response. Valid values:
*
* - zh: Chinese
* - en: English
*
*
* example:
* zh
*/
@NameInMap("Lang")
public String lang;
/**
* The operation that you want to perform on the alert events. Valid values:
*
* - manual_handled: handle the alert events.
* - ignore: igore the alert events.
* - cancel_ignore: remove the alert events from the whitelist.
*
*
* example:
* ignore
*/
@NameInMap("OperationCode")
public String operationCode;
public static UpdateAlarmEventRequest build(java.util.Map map) throws Exception {
UpdateAlarmEventRequest self = new UpdateAlarmEventRequest();
return TeaModel.build(map, self);
}
public UpdateAlarmEventRequest setAlarmEventIdList(java.util.List alarmEventIdList) {
this.alarmEventIdList = alarmEventIdList;
return this;
}
public java.util.List getAlarmEventIdList() {
return this.alarmEventIdList;
}
public UpdateAlarmEventRequest setLang(String lang) {
this.lang = lang;
return this;
}
public String getLang() {
return this.lang;
}
public UpdateAlarmEventRequest setOperationCode(String operationCode) {
this.operationCode = operationCode;
return this;
}
public String getOperationCode() {
return this.operationCode;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy