com.aliyun.rds20140815.models.ModifyDBProxyEndpointResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rds20140815 Show documentation
Show all versions of rds20140815 Show documentation
Alibaba Cloud rds (20140815) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class ModifyDBProxyEndpointResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* 6B50D92C-1960-4D4F-A290-AFADD6B1A5C8
*/
@NameInMap("RequestId")
public String requestId;
public static ModifyDBProxyEndpointResponseBody build(java.util.Map map) throws Exception {
ModifyDBProxyEndpointResponseBody self = new ModifyDBProxyEndpointResponseBody();
return TeaModel.build(map, self);
}
public ModifyDBProxyEndpointResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}