com.aliyun.arms20190808.models.CreatePrometheusInstanceResponseBody 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 CreatePrometheusInstanceResponseBody extends TeaModel {
/**
* The status code. The status code 200 indicates that the request was successful.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The ID of the created Prometheus instance.
*
* example:
* qduukd****
*/
@NameInMap("Data")
public String data;
/**
* The message returned.
*
* example:
* message
*/
@NameInMap("Message")
public String message;
/**
* The ID of the request.
*
* example:
* 70675725-8F11-4817-8106-CFE0AD71****
*/
@NameInMap("RequestId")
public String requestId;
public static CreatePrometheusInstanceResponseBody build(java.util.Map map) throws Exception {
CreatePrometheusInstanceResponseBody self = new CreatePrometheusInstanceResponseBody();
return TeaModel.build(map, self);
}
public CreatePrometheusInstanceResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public CreatePrometheusInstanceResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public CreatePrometheusInstanceResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public CreatePrometheusInstanceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy