All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.cs20151215.models.DescribeNodePoolVulsRequest Maven / Gradle / Ivy

There is a newer version: 4.8.0
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy