
ksyun.client.krds.createdbparametergroup.v20160701.CreateDBParameterGroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksyun-java-sdk Show documentation
Show all versions of ksyun-java-sdk Show documentation
The KSYUN Web Services SDK for Java provides Java APIs
for building software on KSYUN' cost-effective, scalable, and reliable
infrastructure products. The KSYUN Java SDK allows developers to code
against APIs for all of KSYUN's infrastructure web services (KSC
S3, KSC KEC, KSC RDS etc).
The newest version!
package ksyun.client.krds.createdbparametergroup.v20160701;
import common.annotation.KsYunField;
import lombok.Data;
import java.util.List;
/**
* @Classname CreateDBParameterGroupRequest
* @Description 请求参数
*/
@Data
public class CreateDBParameterGroupRequest {
/**
* 参数组名称
*/
@KsYunField(name = "DBParameterGroupName")
private String DBParameterGroupName;
/**
* 数据库引擎名称 不同的数据库引擎,需要不同的数据库参数组
Engine与EngineVersion的对应关系:
mysql 5.5、5.6、5.7、8.0
percona 5.6
consistent_mysql 5.7
ebs_mysql 5.6、5.7
*/
@KsYunField(name = "Engine")
private String Engine;
/**
* 数据库引擎版本
*/
@KsYunField(name = "EngineVersion")
private String EngineVersion;
/**
* 参数名 参数名与参数值同时填写
*/
@KsYunField(name = "Parameters.Name")
private List ParametersNameList;
/**
* 参数值
*/
@KsYunField(name = "Parameters.Value")
private List ParametersValueList;
/**
* 参数组描述
*/
@KsYunField(name = "Description")
private String Description;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy