com.aliyun.eas20210701.models.DeleteServiceInstancesResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas20210701 Show documentation
Show all versions of eas20210701 Show documentation
Alibaba Cloud eas (20210701) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;
import com.aliyun.tea.*;
public class DeleteServiceInstancesResponseBody extends TeaModel {
/**
* The returned message.
*
* example:
* Instance(s) [foo-rdsb,foo-rdsa] for service [foo] in region [cn-shanghai] was deleted successfully
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* 40325405-579C-4D82****
*/
@NameInMap("RequestId")
public String requestId;
public static DeleteServiceInstancesResponseBody build(java.util.Map map) throws Exception {
DeleteServiceInstancesResponseBody self = new DeleteServiceInstancesResponseBody();
return TeaModel.build(map, self);
}
public DeleteServiceInstancesResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public DeleteServiceInstancesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}