com.aliyun.sas20181203.models.UnbindAegisRequest 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 UnbindAegisRequest extends TeaModel {
/**
* The UUID of the server that you want to unbind. Separate multiple UUIDs with commas (,).
*
* You can call the DescribeCloudCenterInstances operation to query the UUIDs of servers.
*
* This parameter is required.
*
* example:
* 4fe8e1cd-3c37-4851-b9de-124da32c****
*/
@NameInMap("Uuids")
public String uuids;
public static UnbindAegisRequest build(java.util.Map map) throws Exception {
UnbindAegisRequest self = new UnbindAegisRequest();
return TeaModel.build(map, self);
}
public UnbindAegisRequest setUuids(String uuids) {
this.uuids = uuids;
return this;
}
public String getUuids() {
return this.uuids;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy