com.aliyun.arms20190808.models.UpdatePrometheusMonitoringResponseBody 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 UpdatePrometheusMonitoringResponseBody extends TeaModel {
/**
* The status code. The status code 200 indicates that the request was successful.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The result of the operation.
*
* example:
* success
*/
@NameInMap("Data")
public String data;
/**
* The returned message.
*
* example:
* message
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* 626037F5-FDEB-45B0-804C-B3C92797****
*/
@NameInMap("RequestId")
public String requestId;
public static UpdatePrometheusMonitoringResponseBody build(java.util.Map map) throws Exception {
UpdatePrometheusMonitoringResponseBody self = new UpdatePrometheusMonitoringResponseBody();
return TeaModel.build(map, self);
}
public UpdatePrometheusMonitoringResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public UpdatePrometheusMonitoringResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public UpdatePrometheusMonitoringResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public UpdatePrometheusMonitoringResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}