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

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

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