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

com.aliyun.sas20181203.models.ModifySecurityEventMarkMissIndividuallyRequest Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class ModifySecurityEventMarkMissIndividuallyRequest extends TeaModel {
    /**
     * 

The alert handling rule that you want to delete.

*/ @NameInMap("DeleteMarkMissParam") public String deleteMarkMissParam; /** *

The ID of the request source. Set the value to **sas**.

*/ @NameInMap("From") public String from; /** *

The alert handling that you want to add.

*/ @NameInMap("InsertMarkMissParam") public String insertMarkMissParam; /** *

The language of the content within the request and response. Default value: **zh**. Valid values:

*
*

* **zh**: Chinese

*

* **en**: English

*/ @NameInMap("Lang") public String lang; /** *

The source IP address of the request. You do not need to specify this parameter. It is automatically obtained by the system.

*/ @NameInMap("SourceIp") public String sourceIp; public static ModifySecurityEventMarkMissIndividuallyRequest build(java.util.Map map) throws Exception { ModifySecurityEventMarkMissIndividuallyRequest self = new ModifySecurityEventMarkMissIndividuallyRequest(); return TeaModel.build(map, self); } public ModifySecurityEventMarkMissIndividuallyRequest setDeleteMarkMissParam(String deleteMarkMissParam) { this.deleteMarkMissParam = deleteMarkMissParam; return this; } public String getDeleteMarkMissParam() { return this.deleteMarkMissParam; } public ModifySecurityEventMarkMissIndividuallyRequest setFrom(String from) { this.from = from; return this; } public String getFrom() { return this.from; } public ModifySecurityEventMarkMissIndividuallyRequest setInsertMarkMissParam(String insertMarkMissParam) { this.insertMarkMissParam = insertMarkMissParam; return this; } public String getInsertMarkMissParam() { return this.insertMarkMissParam; } public ModifySecurityEventMarkMissIndividuallyRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public ModifySecurityEventMarkMissIndividuallyRequest setSourceIp(String sourceIp) { this.sourceIp = sourceIp; return this; } public String getSourceIp() { return this.sourceIp; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy