com.aliyun.cs20151215.models.DescribeNodePoolVulsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class DescribeNodePoolVulsRequest extends TeaModel {
/**
* The priority to fix the vulnerability. Separate multiple priorities with commas (,). Valid values:
*
* asap
: high
* later
: medium
* nntf
: low
*
*
* example:
* asap
*/
@NameInMap("necessity")
public String necessity;
public static DescribeNodePoolVulsRequest build(java.util.Map map) throws Exception {
DescribeNodePoolVulsRequest self = new DescribeNodePoolVulsRequest();
return TeaModel.build(map, self);
}
public DescribeNodePoolVulsRequest setNecessity(String necessity) {
this.necessity = necessity;
return this;
}
public String getNecessity() {
return this.necessity;
}
}