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

com.aliyun.ens20171110.models.CreateClusterResponseBody Maven / Gradle / Ivy

There is a newer version: 7.4.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class CreateClusterResponseBody extends TeaModel {
    /**
     * 

The ID of the instance.

* * example: *

c34b69b095f8241c5a91cc2252dceb976

*/ @NameInMap("ClusterId") public String clusterId; /** *

The ID of the request.

* * example: *

C0003E8B-B930-4F59-ADC0-0E209A9012A8

*/ @NameInMap("RequestId") public String requestId; public static CreateClusterResponseBody build(java.util.Map map) throws Exception { CreateClusterResponseBody self = new CreateClusterResponseBody(); return TeaModel.build(map, self); } public CreateClusterResponseBody setClusterId(String clusterId) { this.clusterId = clusterId; return this; } public String getClusterId() { return this.clusterId; } public CreateClusterResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy