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

com.aliyun.sas20181203.models.DescribeMachineCanRebootRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class DescribeMachineCanRebootRequest extends TeaModel {
    /**
     * 

The type of the vulnerabilities. Valid values:

*
    *
  • cve: Linux software vulnerabilities
  • *
  • sys: Windows system vulnerabilities
  • *
* * example: *

sys

*/ @NameInMap("Type") public String type; /** *

The UUID of the server.

* * example: *

5b268326-273e-44fc-a0e3-9482435c****

*/ @NameInMap("Uuid") public String uuid; public static DescribeMachineCanRebootRequest build(java.util.Map map) throws Exception { DescribeMachineCanRebootRequest self = new DescribeMachineCanRebootRequest(); return TeaModel.build(map, self); } public DescribeMachineCanRebootRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeMachineCanRebootRequest setUuid(String uuid) { this.uuid = uuid; return this; } public String getUuid() { return this.uuid; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy