com.aliyun.polardb20170801.models.DeleteDBClusterEndpointResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polardb20170801 Show documentation
Show all versions of polardb20170801 Show documentation
Alibaba Cloud ApsaraDB for POLARDB (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.polardb20170801.models;
import com.aliyun.tea.*;
public class DeleteDBClusterEndpointResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* CD3FA5F3-FAF3-44CA-AFFF-BAF869******
*/
@NameInMap("RequestId")
public String requestId;
public static DeleteDBClusterEndpointResponseBody build(java.util.Map map) throws Exception {
DeleteDBClusterEndpointResponseBody self = new DeleteDBClusterEndpointResponseBody();
return TeaModel.build(map, self);
}
public DeleteDBClusterEndpointResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}