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

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

The total number of entries returned.

* * example: *

10

*/ @NameInMap("Count") public Integer count; /** *

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

* * example: *

6D9CDB47-6191-4415-BE63-7E8B12CD****

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

An array that consists of the baseline risk items of the exposed server.

*/ @NameInMap("WarningList") public java.util.List warningList; public static DescribeExposedCheckWarningResponseBody build(java.util.Map map) throws Exception { DescribeExposedCheckWarningResponseBody self = new DescribeExposedCheckWarningResponseBody(); return TeaModel.build(map, self); } public DescribeExposedCheckWarningResponseBody setCount(Integer count) { this.count = count; return this; } public Integer getCount() { return this.count; } public DescribeExposedCheckWarningResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeExposedCheckWarningResponseBody setWarningList(java.util.List warningList) { this.warningList = warningList; return this; } public java.util.List getWarningList() { return this.warningList; } public static class DescribeExposedCheckWarningResponseBodyWarningList extends TeaModel { /** *

The ID of the baseline.

*
*

You can call the DescribeCheckWarningSummary operation to query the IDs of baselines.

*
* * example: *

107

*/ @NameInMap("RiskId") public Long riskId; /** *

The name of the baseline.

* * example: *

Weak password-Redis DB login weak password baseline

*/ @NameInMap("RiskName") public String riskName; /** *

The display name of the baseline sub type.

* * example: *

Redis DB login weak password baseline

*/ @NameInMap("SubTypeAlias") public String subTypeAlias; /** *

The display name of the baseline type.

* * example: *

Weak password

*/ @NameInMap("TypeAlias") public String typeAlias; /** *

The UUID of the server.

* * example: *

1d35b031-ee4e-4e53-8b53-465ab712****

*/ @NameInMap("Uuid") public String uuid; public static DescribeExposedCheckWarningResponseBodyWarningList build(java.util.Map map) throws Exception { DescribeExposedCheckWarningResponseBodyWarningList self = new DescribeExposedCheckWarningResponseBodyWarningList(); return TeaModel.build(map, self); } public DescribeExposedCheckWarningResponseBodyWarningList setRiskId(Long riskId) { this.riskId = riskId; return this; } public Long getRiskId() { return this.riskId; } public DescribeExposedCheckWarningResponseBodyWarningList setRiskName(String riskName) { this.riskName = riskName; return this; } public String getRiskName() { return this.riskName; } public DescribeExposedCheckWarningResponseBodyWarningList setSubTypeAlias(String subTypeAlias) { this.subTypeAlias = subTypeAlias; return this; } public String getSubTypeAlias() { return this.subTypeAlias; } public DescribeExposedCheckWarningResponseBodyWarningList setTypeAlias(String typeAlias) { this.typeAlias = typeAlias; return this; } public String getTypeAlias() { return this.typeAlias; } public DescribeExposedCheckWarningResponseBodyWarningList setUuid(String uuid) { this.uuid = uuid; return this; } public String getUuid() { return this.uuid; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy