
ksyun.client.postgresql.modifydbinstanceextension.v20181225.ModifyDBInstanceExtensionRequest 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.postgresql.modifydbinstanceextension.v20181225;
import common.annotation.KsYunField;
import lombok.Data;
import java.util.List;
/**
* @Classname ModifyDBInstanceExtensionRequest
* @Description 请求参数
*/
@Data
public class ModifyDBInstanceExtensionRequest {
/**
* 实例Id
*/
@KsYunField(name = "DBInstanceIdentifier")
private String DBInstanceIdentifier;
/**
* 数据库名称
*
* ```json
* 注意:插件是'database'级别的,必须指定db
* ```
*/
@KsYunField(name = "InstanceDatabaseName")
private String InstanceDatabaseName;
/**
* 操作类型
*
* ```json
* 1.默认放的:install
* 2.Install 安装
* 3.Uninstall 卸载(不支持)
* ```
*/
@KsYunField(name = "Operation")
private String Operation;
/**
* 插件列表
*
* ```json
* 注意:支持普通GET传List的方式,也支持以Extension=aaa,bbb,ccc的形式传值
* ```
*/
@KsYunField(name = "Extension")
private List ExtensionList;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy