com.aliyun.arms20190808.models.RemoveSourcesFromPrometheusGlobalViewResponseBody 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
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class RemoveSourcesFromPrometheusGlobalViewResponseBody extends TeaModel {
/**
* Status code. 200 is success, other status codes are exceptions.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The returned struct.
*/
@NameInMap("Data")
public RemoveSourcesFromPrometheusGlobalViewResponseBodyData data;
/**
* Returns a hint message for the result.
*
* example:
* success
*/
@NameInMap("Message")
public String message;
/**
* The request ID. You can use the ID to query logs and troubleshoot issues.
*
* example:
* 9319A57D-2D9E-472A-B69B-CF3CD16D****
*/
@NameInMap("RequestId")
public String requestId;
public static RemoveSourcesFromPrometheusGlobalViewResponseBody build(java.util.Map map) throws Exception {
RemoveSourcesFromPrometheusGlobalViewResponseBody self = new RemoveSourcesFromPrometheusGlobalViewResponseBody();
return TeaModel.build(map, self);
}
public RemoveSourcesFromPrometheusGlobalViewResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public RemoveSourcesFromPrometheusGlobalViewResponseBody setData(RemoveSourcesFromPrometheusGlobalViewResponseBodyData data) {
this.data = data;
return this;
}
public RemoveSourcesFromPrometheusGlobalViewResponseBodyData getData() {
return this.data;
}
public RemoveSourcesFromPrometheusGlobalViewResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public RemoveSourcesFromPrometheusGlobalViewResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class RemoveSourcesFromPrometheusGlobalViewResponseBodyData extends TeaModel {
/**
* The Info-level information.
*
* example:
* {regionId: the region where the aggregation instance resides. globalViewClusterId: the ID of the aggregation instance.
*/
@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 RemoveSourcesFromPrometheusGlobalViewResponseBodyData build(java.util.Map map) throws Exception {
RemoveSourcesFromPrometheusGlobalViewResponseBodyData self = new RemoveSourcesFromPrometheusGlobalViewResponseBodyData();
return TeaModel.build(map, self);
}
public RemoveSourcesFromPrometheusGlobalViewResponseBodyData setInfo(String info) {
this.info = info;
return this;
}
public String getInfo() {
return this.info;
}
public RemoveSourcesFromPrometheusGlobalViewResponseBodyData setMsg(String msg) {
this.msg = msg;
return this;
}
public String getMsg() {
return this.msg;
}
public RemoveSourcesFromPrometheusGlobalViewResponseBodyData setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy