com.aliyun.arms20190808.models.GetPrometheusGlobalViewResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class GetPrometheusGlobalViewResponseBody extends TeaModel {
/**
* Status code. 200 is success, other status codes are exceptions.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The struct returned.
*
* example:
* { "clusterId":"The ID of the global aggregation instance.", "groupName":"The name of the global aggregation instance.", "dataSources":[ { "sourceName":"The name of the data source.- ArmsPrometheus No.1", "sourceType":"AlibabaPrometheus", "userId":"UserID", "clusterId":"ClusterId" }, // more datasources ] }
*/
@NameInMap("Data")
public String data;
/**
* Returns a hint message for the result.
*
* example:
* success
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* 743AD493-D006-53BD-AAEC-DDCE7FB68EA7
*/
@NameInMap("RequestId")
public String requestId;
public static GetPrometheusGlobalViewResponseBody build(java.util.Map map) throws Exception {
GetPrometheusGlobalViewResponseBody self = new GetPrometheusGlobalViewResponseBody();
return TeaModel.build(map, self);
}
public GetPrometheusGlobalViewResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public GetPrometheusGlobalViewResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetPrometheusGlobalViewResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetPrometheusGlobalViewResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy