com.aliyun.arms20190808.models.DeletePrometheusIntegrationResponseBody 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 DeletePrometheusIntegrationResponseBody extends TeaModel {
/**
* The status code. The status code 200 indicates that the request was successful. If another status code is returned, the request failed.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* success or an error message.
*
* example:
* success
*/
@NameInMap("Data")
public String data;
/**
* The message returned.
*
* example:
* message
*/
@NameInMap("Message")
public String message;
/**
* Id of the request
*
* example:
* 19F54318-CC92-5567-BF66-CB029EC44C84
*/
@NameInMap("RequestId")
public String requestId;
public static DeletePrometheusIntegrationResponseBody build(java.util.Map map) throws Exception {
DeletePrometheusIntegrationResponseBody self = new DeletePrometheusIntegrationResponseBody();
return TeaModel.build(map, self);
}
public DeletePrometheusIntegrationResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public DeletePrometheusIntegrationResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public DeletePrometheusIntegrationResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public DeletePrometheusIntegrationResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy