
com.aliyun.arms20190808.models.RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody extends TeaModel {
/**
* The HTTP status code. The status code 200 indicates that the request was successful.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The returned struct.
*/
@NameInMap("Data")
public RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData data;
/**
* The message returned.
*
* example:
* success
*/
@NameInMap("Message")
public String message;
/**
* The request ID. You can use the ID to query logs and troubleshoot issues.
*
* example:
* F7781D4A-2818-41E7-B7BB-79D809E9****
*/
@NameInMap("RequestId")
public String requestId;
public static RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody build(java.util.Map map) throws Exception {
RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody self = new RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody();
return TeaModel.build(map, self);
}
public RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody setData(RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData data) {
this.data = data;
return this;
}
public RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData getData() {
return this.data;
}
public RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData extends TeaModel {
/**
* The Info-level information.
*
* example:
* {regionId: the region where the global aggregation instance resides. globalViewClusterId: the ID of the global aggregation instance. failedClusterIds: the IDs of the clusters that failed to be added. A cluster may fail to be added if the specified cluster ID is invalid.}
*/
@NameInMap("Info")
public String info;
/**
* The additional information.
*
* example:
* OK
*/
@NameInMap("Msg")
public String msg;
/**
* Indicates whether the request was successful. Valid values:
*
* true
* false
*
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData build(java.util.Map map) throws Exception {
RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData self = new RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData();
return TeaModel.build(map, self);
}
public RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData setInfo(String info) {
this.info = info;
return this;
}
public String getInfo() {
return this.info;
}
public RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData setMsg(String msg) {
this.msg = msg;
return this;
}
public String getMsg() {
return this.msg;
}
public RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy