com.aliyun.arms20190808.models.UpdateGrafanaWorkspaceResponseBody 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 UpdateGrafanaWorkspaceResponseBody extends TeaModel {
/**
* The HTTP status code returned for the request. Valid values:
*
* 2XX
: The request is successful.
* 3XX
: A redirection message is returned.
* 4XX
: The request is invalid.
* 5XX
: A server error occurs.
*
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* Indicates whether the update is successful. Valid values:
*
* true
* false
*
*
* example:
* true
*/
@NameInMap("Data")
public Boolean data;
/**
* The error message returned for the request.
*
* example:
* message
*/
@NameInMap("Message")
public String message;
/**
* Id of the request
*
* example:
* 16AF921B-8187-489F-9913-43C808B4****
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the request was successful.
*
* true
* false
*
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
/**
* The ID of the trace. The ID is used to query the details of a request.
*
* example:
* eac0a8048716731735000007137d000b
*/
@NameInMap("TraceId")
public String traceId;
public static UpdateGrafanaWorkspaceResponseBody build(java.util.Map map) throws Exception {
UpdateGrafanaWorkspaceResponseBody self = new UpdateGrafanaWorkspaceResponseBody();
return TeaModel.build(map, self);
}
public UpdateGrafanaWorkspaceResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public UpdateGrafanaWorkspaceResponseBody setData(Boolean data) {
this.data = data;
return this;
}
public Boolean getData() {
return this.data;
}
public UpdateGrafanaWorkspaceResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public UpdateGrafanaWorkspaceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public UpdateGrafanaWorkspaceResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public UpdateGrafanaWorkspaceResponseBody setTraceId(String traceId) {
this.traceId = traceId;
return this;
}
public String getTraceId() {
return this.traceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy