com.aliyun.ens20171110.models.CreateClusterResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// 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