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

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

There is a newer version: 4.8.0
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy