
com.aliyun.arms20190808.models.ListPrometheusGlobalViewResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class ListPrometheusGlobalViewResponseBody extends TeaModel {
/**
* Status code. Description 200 means success.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The list of global aggregation instances. The value of this parameter is a string in the JSON format.
*
* example:
* [ {groupName: "the name of the global aggregation instance", clusterId: "global-v2-clusterid", endpoint: "cn-hangzhou"}, // ..... more items ]
*/
@NameInMap("Data")
public String data;
/**
* More information.
*
* example:
* success
*/
@NameInMap("Message")
public String message;
/**
* The ID of the request. You can use the ID to query logs and troubleshoot issues.
*
* example:
* DBDCE95A-A0DD-5FC5-97CC-EEFC3D814385
*/
@NameInMap("RequestId")
public String requestId;
public static ListPrometheusGlobalViewResponseBody build(java.util.Map map) throws Exception {
ListPrometheusGlobalViewResponseBody self = new ListPrometheusGlobalViewResponseBody();
return TeaModel.build(map, self);
}
public ListPrometheusGlobalViewResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListPrometheusGlobalViewResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public ListPrometheusGlobalViewResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListPrometheusGlobalViewResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy