com.aliyun.polardb20170801.models.ModifyDBClusterEndpointResponseBody 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 ModifyDBClusterEndpointResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* CD3FA5F3-FAF3-44CA-AFFF-BAF869******
*/
@NameInMap("RequestId")
public String requestId;
public static ModifyDBClusterEndpointResponseBody build(java.util.Map map) throws Exception {
ModifyDBClusterEndpointResponseBody self = new ModifyDBClusterEndpointResponseBody();
return TeaModel.build(map, self);
}
public ModifyDBClusterEndpointResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}