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

com.aliyun.sdk.service.cs20151215.models.EdgeClusterAddEdgeMachineResponseBody Maven / Gradle / Ivy

There is a newer version: 2.0.29
Show newest version
// 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 EdgeClusterAddEdgeMachineResponseBody} extends {@link TeaModel}
 *
 * 

EdgeClusterAddEdgeMachineResponseBody

*/ public class EdgeClusterAddEdgeMachineResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("edge_machine_id") private String edgeMachineId; @com.aliyun.core.annotation.NameInMap("request_id") private String requestId; private EdgeClusterAddEdgeMachineResponseBody(Builder builder) { this.edgeMachineId = builder.edgeMachineId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static EdgeClusterAddEdgeMachineResponseBody 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 EdgeClusterAddEdgeMachineResponseBody build() { return new EdgeClusterAddEdgeMachineResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy