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

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

Id of the request

* * example: *

1697100584236600453-ce0da5a1d627e4e9e9f96cae8ad07****-clustercheck-lboto

*/ @NameInMap("check_id") public String checkId; /** *

The list of check items.

*/ @NameInMap("check_items") public java.util.Map>> checkItems; /** *

The time when the cluster check task was created.

* * example: *

2023-10-16T08:31:20.292030178Z

*/ @NameInMap("created_at") public String createdAt; /** *

The time when the cluster check task was completed.

* * example: *

2023-10-16T08:35:20.292030178Z

*/ @NameInMap("finished_at") public String finishedAt; /** *

The message that indicates the status of the cluster check task.

* * example: *

task succeed

*/ @NameInMap("message") public String message; /** *

The status of the cluster check.

* * example: *

Succeeded

*/ @NameInMap("status") public String status; /** *

The check method.

* * example: *

ClusterUpgrade

*/ @NameInMap("type") public String type; public static GetClusterCheckResponseBody build(java.util.Map map) throws Exception { GetClusterCheckResponseBody self = new GetClusterCheckResponseBody(); return TeaModel.build(map, self); } public GetClusterCheckResponseBody setCheckId(String checkId) { this.checkId = checkId; return this; } public String getCheckId() { return this.checkId; } public GetClusterCheckResponseBody setCheckItems(java.util.Map>> checkItems) { this.checkItems = checkItems; return this; } public java.util.Map>> getCheckItems() { return this.checkItems; } public GetClusterCheckResponseBody setCreatedAt(String createdAt) { this.createdAt = createdAt; return this; } public String getCreatedAt() { return this.createdAt; } public GetClusterCheckResponseBody setFinishedAt(String finishedAt) { this.finishedAt = finishedAt; return this; } public String getFinishedAt() { return this.finishedAt; } public GetClusterCheckResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public GetClusterCheckResponseBody setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetClusterCheckResponseBody setType(String type) { this.type = type; return this; } public String getType() { return this.type; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy