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

com.aliyun.cs20151215.models.CreateClusterResponseBody 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 CreateClusterResponseBody extends TeaModel {
    /**
     * 

The ID of the cluster.

* * example: *

cb95aa626a47740afbf6aa099b650****

*/ @NameInMap("cluster_id") public String clusterId; /** *

The request ID.

* * example: *

687C5BAA-D103-4993-884B-C35E4314A1E1

*/ @NameInMap("request_id") public String requestId; /** *

The task ID.

* * example: *

T-5a54309c80282e39ea00002f

*/ @NameInMap("task_id") public String taskId; 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; } public CreateClusterResponseBody setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy