com.aliyun.sas20181203.models.DescribeContainerGroupedFieldDetailRequest 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 DescribeContainerGroupedFieldDetailRequest extends TeaModel {
/**
* The search conditions that are used to query assets. The value of this parameter is in the JSON format. Separate multiple search conditions with commas (,). Example: [{"name":"riskStatus","value":"YES"},{"name":"riskLevel","value":"2"}]
.
*
* Supported search conditions include the instance ID, instance name, virtual private cloud (VPC) ID, region, and public IP address. You can call the DescribeCriteria operation to query the supported search conditions.
*
* This parameter is required.
*
* example:
* [{\"name\":\"clusterId\",\"value\":\"cfd26658431084c73a48dd97328ba8acf\"}]
*/
@NameInMap("Criteria")
public String criteria;
/**
* The filter condition for a grouping and aggregation query. Valid values:
*
* - pod
* - appName
* - clusterId
* - namespace
* - image
* - containerScan
*
* This parameter is required.
*
* example:
* pod
*/
@NameInMap("GroupField")
public String groupField;
public static DescribeContainerGroupedFieldDetailRequest build(java.util.Map map) throws Exception {
DescribeContainerGroupedFieldDetailRequest self = new DescribeContainerGroupedFieldDetailRequest();
return TeaModel.build(map, self);
}
public DescribeContainerGroupedFieldDetailRequest setCriteria(String criteria) {
this.criteria = criteria;
return this;
}
public String getCriteria() {
return this.criteria;
}
public DescribeContainerGroupedFieldDetailRequest setGroupField(String groupField) {
this.groupField = groupField;
return this;
}
public String getGroupField() {
return this.groupField;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy