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

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