com.aliyun.sas20181203.models.ListClusterCnnfStatusDetailRequest 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 ListClusterCnnfStatusDetailRequest extends TeaModel {
/**
* An array that consists of the ID of the cluster.
*/
@NameInMap("ClusterIds")
public java.util.List clusterIds;
public static ListClusterCnnfStatusDetailRequest build(java.util.Map map) throws Exception {
ListClusterCnnfStatusDetailRequest self = new ListClusterCnnfStatusDetailRequest();
return TeaModel.build(map, self);
}
public ListClusterCnnfStatusDetailRequest setClusterIds(java.util.List clusterIds) {
this.clusterIds = clusterIds;
return this;
}
public java.util.List getClusterIds() {
return this.clusterIds;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy