com.aliyun.sas20181203.models.DescribeCheckResultResponseBody 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 DescribeCheckResultResponseBody extends TeaModel {
/**
* The check results.
*/
@NameInMap("CheckResultList")
public java.util.List checkResultList;
/**
* The request ID.
*
* example:
* 571B2642-BF51-5BDD-906B-D2340DB9****
*/
@NameInMap("RequestId")
public String requestId;
public static DescribeCheckResultResponseBody build(java.util.Map map) throws Exception {
DescribeCheckResultResponseBody self = new DescribeCheckResultResponseBody();
return TeaModel.build(map, self);
}
public DescribeCheckResultResponseBody setCheckResultList(java.util.List checkResultList) {
this.checkResultList = checkResultList;
return this;
}
public java.util.List getCheckResultList() {
return this.checkResultList;
}
public DescribeCheckResultResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class DescribeCheckResultResponseBodyCheckResultList extends TeaModel {
/**
* The compliance status. Valid values:
*
* - 1: compliant
* - 0: non-compliant
*
*
* example:
* 1
*/
@NameInMap("ComplianceStatus")
public Integer complianceStatus;
/**
* The name of the corresponding section. Valid values:
*
* - information_classification: information classification
* - information_mark: information labeling
* - network_security_policy: access to networks and network services
* - login_control: secure logon procedures
* - week_password: password management system
* - key_manage: key management
* - malicious_software: protection against malware
* - information_backup: information backup
* - audit_policy: information system audit control mechanisms
*
*
* example:
* information_mark
*/
@NameInMap("Name")
public String name;
public static DescribeCheckResultResponseBodyCheckResultList build(java.util.Map map) throws Exception {
DescribeCheckResultResponseBodyCheckResultList self = new DescribeCheckResultResponseBodyCheckResultList();
return TeaModel.build(map, self);
}
public DescribeCheckResultResponseBodyCheckResultList setComplianceStatus(Integer complianceStatus) {
this.complianceStatus = complianceStatus;
return this;
}
public Integer getComplianceStatus() {
return this.complianceStatus;
}
public DescribeCheckResultResponseBodyCheckResultList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy