![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.rds20140815.models.ModifyParameterGroupResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class ModifyParameterGroupResponseBody extends TeaModel {
/**
* The parameter template ID.
*
* example:
* rpg-13ppdh****
*/
@NameInMap("ParameterGroupId")
public String parameterGroupId;
/**
* The request ID.
*
* example:
* 857DC00B-7B85-4853-8B27-AD65EB618BC6
*/
@NameInMap("RequestId")
public String requestId;
public static ModifyParameterGroupResponseBody build(java.util.Map map) throws Exception {
ModifyParameterGroupResponseBody self = new ModifyParameterGroupResponseBody();
return TeaModel.build(map, self);
}
public ModifyParameterGroupResponseBody setParameterGroupId(String parameterGroupId) {
this.parameterGroupId = parameterGroupId;
return this;
}
public String getParameterGroupId() {
return this.parameterGroupId;
}
public ModifyParameterGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy