com.aliyun.sas20181203.models.DescribeMachineCanRebootRequest 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 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