com.aliyun.sas20181203.models.DescribeContainerScanConfigResponseBody 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 DescribeContainerScanConfigResponseBody extends TeaModel {
/**
* The response parameters.
*/
@NameInMap("Data")
public DescribeContainerScanConfigResponseBodyData data;
/**
* The HTTP status code.
*
* example:
* 200
*/
@NameInMap("HttpStatusCode")
public Integer httpStatusCode;
/**
* The request ID.
*
* example:
* 69BFFCDE-37D6-5A49-A8BC-BB03AC83****
*/
@NameInMap("RequestId")
public String requestId;
public static DescribeContainerScanConfigResponseBody build(java.util.Map map) throws Exception {
DescribeContainerScanConfigResponseBody self = new DescribeContainerScanConfigResponseBody();
return TeaModel.build(map, self);
}
public DescribeContainerScanConfigResponseBody setData(DescribeContainerScanConfigResponseBodyData data) {
this.data = data;
return this;
}
public DescribeContainerScanConfigResponseBodyData getData() {
return this.data;
}
public DescribeContainerScanConfigResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public DescribeContainerScanConfigResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class DescribeContainerScanConfigResponseBodyData extends TeaModel {
/**
* The total number of container applications in the cluster.
*
* example:
* 100
*/
@NameInMap("AllCount")
public Integer allCount;
/**
* The names of the container applications.
*
* example:
* [\"alicloud-monitor-controller\"]
*/
@NameInMap("AppNames")
public String appNames;
/**
* The number of selected container applications.
*
* example:
* 10
*/
@NameInMap("ChooseCount")
public Integer chooseCount;
/**
* The cluster ID.
*
* example:
* c8ca91e0907d94efaba7fb0827eb9****
*/
@NameInMap("ClusterId")
public String clusterId;
/**
* The name of the cluster.
*
* example:
* hhht-cluster-02
*/
@NameInMap("ClusterName")
public String clusterName;
public static DescribeContainerScanConfigResponseBodyData build(java.util.Map map) throws Exception {
DescribeContainerScanConfigResponseBodyData self = new DescribeContainerScanConfigResponseBodyData();
return TeaModel.build(map, self);
}
public DescribeContainerScanConfigResponseBodyData setAllCount(Integer allCount) {
this.allCount = allCount;
return this;
}
public Integer getAllCount() {
return this.allCount;
}
public DescribeContainerScanConfigResponseBodyData setAppNames(String appNames) {
this.appNames = appNames;
return this;
}
public String getAppNames() {
return this.appNames;
}
public DescribeContainerScanConfigResponseBodyData setChooseCount(Integer chooseCount) {
this.chooseCount = chooseCount;
return this;
}
public Integer getChooseCount() {
return this.chooseCount;
}
public DescribeContainerScanConfigResponseBodyData setClusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
public String getClusterId() {
return this.clusterId;
}
public DescribeContainerScanConfigResponseBodyData setClusterName(String clusterName) {
this.clusterName = clusterName;
return this;
}
public String getClusterName() {
return this.clusterName;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy