com.aliyun.arms20190808.models.UninstallPromClusterResponseBody 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 UninstallPromClusterResponseBody extends TeaModel {
/**
* The status code. The status code 200 indicates that the request was successful.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* Indicates whether the request was successful.
*
* example:
* true
*/
@NameInMap("Data")
public String data;
/**
* The returned message.
*
* example:
* message
*/
@NameInMap("Message")
public String message;
/**
* The request ID. You can use the ID to find logs and troubleshoot issues.
*
* example:
* 53980F48-DE82-53A1-9ADE-D2629226DD9A
*/
@NameInMap("RequestId")
public String requestId;
public static UninstallPromClusterResponseBody build(java.util.Map map) throws Exception {
UninstallPromClusterResponseBody self = new UninstallPromClusterResponseBody();
return TeaModel.build(map, self);
}
public UninstallPromClusterResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public UninstallPromClusterResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public UninstallPromClusterResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public UninstallPromClusterResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy