com.aliyun.cs20151215.models.EdgeClusterAddEdgeMachineResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class EdgeClusterAddEdgeMachineResponseBody extends TeaModel {
/**
* The ID of the cloud-native box.
*
* example:
* 0f4bf70a-caff-4b26-a679-fb0188a1****
*/
@NameInMap("edge_machine_id")
public String edgeMachineId;
/**
* The request ID.
*
* example:
* 0adf3a23-6841-41e8-9f55-7b290216c980
*/
@NameInMap("request_id")
public String requestId;
public static EdgeClusterAddEdgeMachineResponseBody build(java.util.Map map) throws Exception {
EdgeClusterAddEdgeMachineResponseBody self = new EdgeClusterAddEdgeMachineResponseBody();
return TeaModel.build(map, self);
}
public EdgeClusterAddEdgeMachineResponseBody setEdgeMachineId(String edgeMachineId) {
this.edgeMachineId = edgeMachineId;
return this;
}
public String getEdgeMachineId() {
return this.edgeMachineId;
}
public EdgeClusterAddEdgeMachineResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}