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

com.aliyun.sas20181203.models.GetClusterSuspEventStatisticsResponseBody 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 GetClusterSuspEventStatisticsResponseBody extends TeaModel {
    /**
     * 

The ID of the request, which is used to locate and troubleshoot issues.

*/ @NameInMap("RequestId") public String requestId; /** *

The number of alerts by risk level.

*/ @NameInMap("SuspStatistics") public GetClusterSuspEventStatisticsResponseBodySuspStatistics suspStatistics; public static GetClusterSuspEventStatisticsResponseBody build(java.util.Map map) throws Exception { GetClusterSuspEventStatisticsResponseBody self = new GetClusterSuspEventStatisticsResponseBody(); return TeaModel.build(map, self); } public GetClusterSuspEventStatisticsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetClusterSuspEventStatisticsResponseBody setSuspStatistics(GetClusterSuspEventStatisticsResponseBodySuspStatistics suspStatistics) { this.suspStatistics = suspStatistics; return this; } public GetClusterSuspEventStatisticsResponseBodySuspStatistics getSuspStatistics() { return this.suspStatistics; } public static class GetClusterSuspEventStatisticsResponseBodySuspStatistics extends TeaModel { /** *

The number of alerts whose Emergency level is Reminder.

*/ @NameInMap("Remind") public Integer remind; /** *

The number of alerts whose Emergency level is Urgent.

*/ @NameInMap("Serious") public Integer serious; /** *

The number of alerts whose Emergency level is Suspicious.

*/ @NameInMap("Suspicious") public Integer suspicious; public static GetClusterSuspEventStatisticsResponseBodySuspStatistics build(java.util.Map map) throws Exception { GetClusterSuspEventStatisticsResponseBodySuspStatistics self = new GetClusterSuspEventStatisticsResponseBodySuspStatistics(); return TeaModel.build(map, self); } public GetClusterSuspEventStatisticsResponseBodySuspStatistics setRemind(Integer remind) { this.remind = remind; return this; } public Integer getRemind() { return this.remind; } public GetClusterSuspEventStatisticsResponseBodySuspStatistics setSerious(Integer serious) { this.serious = serious; return this; } public Integer getSerious() { return this.serious; } public GetClusterSuspEventStatisticsResponseBodySuspStatistics setSuspicious(Integer suspicious) { this.suspicious = suspicious; return this; } public Integer getSuspicious() { return this.suspicious; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy