com.aliyun.sdk.service.cs20151215.models.CreateEdgeMachineResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cs20151215 Show documentation
Show all versions of alibabacloud-cs20151215 Show documentation
Alibaba Cloud CS (20151215) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cs20151215.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateEdgeMachineResponseBody} extends {@link TeaModel}
*
* CreateEdgeMachineResponseBody
*/
public class CreateEdgeMachineResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("edge_machine_id")
private String edgeMachineId;
@com.aliyun.core.annotation.NameInMap("request_id")
private String requestId;
private CreateEdgeMachineResponseBody(Builder builder) {
this.edgeMachineId = builder.edgeMachineId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateEdgeMachineResponseBody create() {
return builder().build();
}
/**
* @return edgeMachineId
*/
public String getEdgeMachineId() {
return this.edgeMachineId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String edgeMachineId;
private String requestId;
/**
* The ID of the cloud-native box.
*/
public Builder edgeMachineId(String edgeMachineId) {
this.edgeMachineId = edgeMachineId;
return this;
}
/**
* The request ID.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateEdgeMachineResponseBody build() {
return new CreateEdgeMachineResponseBody(this);
}
}
}