com.aliyun.edas20170801.models.DeleteClusterResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edas20170801 Show documentation
Show all versions of edas20170801 Show documentation
Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.edas20170801.models;
import com.aliyun.tea.*;
public class DeleteClusterResponseBody extends TeaModel {
/**
* The HTTP status code that is returned.
*/
@NameInMap("Code")
public Integer code;
/**
* Indicates whether the cluster is deleted. Valid values:
*
* * true: The cluster is deleted.
* * false: The cluster is not deleted.
*/
@NameInMap("Data")
public Boolean data;
/**
* The additional information that is returned.
*/
@NameInMap("Message")
public String message;
/**
* The ID of the request.
*/
@NameInMap("RequestId")
public String requestId;
public static DeleteClusterResponseBody build(java.util.Map map) throws Exception {
DeleteClusterResponseBody self = new DeleteClusterResponseBody();
return TeaModel.build(map, self);
}
public DeleteClusterResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public DeleteClusterResponseBody setData(Boolean data) {
this.data = data;
return this;
}
public Boolean getData() {
return this.data;
}
public DeleteClusterResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public DeleteClusterResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}