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

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

集群ID。

* * example: *

c82e6987e2961451182edacd74faf****

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

请求ID。

* * example: *

0527ac9a-c899-4341-a21a-****

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

任务ID。

* * example: *

T-5faa48fb31b6b8078d00****

*/ @NameInMap("task_id") public String taskId; public static UpgradeClusterResponseBody build(java.util.Map map) throws Exception { UpgradeClusterResponseBody self = new UpgradeClusterResponseBody(); return TeaModel.build(map, self); } public UpgradeClusterResponseBody setClusterId(String clusterId) { this.clusterId = clusterId; return this; } public String getClusterId() { return this.clusterId; } public UpgradeClusterResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpgradeClusterResponseBody setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy