com.aliyun.sas20181203.models.DescribeScanTaskStatisticsRequest 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 DescribeScanTaskStatisticsRequest extends TeaModel {
/**
* The severities of the alert events handled by the virus detection task. Separate multiple severities with commas (,). The severities decrease in descending order. Valid values:
*
* - serious
* - suspicious
* - remind
*
*
* example:
* serious,suspicious,remind
*/
@NameInMap("Levels")
public String levels;
public static DescribeScanTaskStatisticsRequest build(java.util.Map map) throws Exception {
DescribeScanTaskStatisticsRequest self = new DescribeScanTaskStatisticsRequest();
return TeaModel.build(map, self);
}
public DescribeScanTaskStatisticsRequest setLevels(String levels) {
this.levels = levels;
return this;
}
public String getLevels() {
return this.levels;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy