
ksyun.client.kkms.generatedatakey.v20160304.GenerateDataKeyRequest 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.kkms.generatedatakey.v20160304;
import common.annotation.KsYunField;
import lombok.Data;
/**
* @Classname GenerateDataKeyRequest
* @Description 请求参数
*/
@Data
public class GenerateDataKeyRequest {
/**
* 客户主KEY的ID
*/
@KsYunField(name = "KeyId")
private String KeyId;
/**
* 数据加密密钥(DataKey)的长度。使用AES128生成128位对称密钥,或AES256生成256位对称密钥
*/
@KsYunField(name = "KeySpec")
private String KeySpec;
/**
* DataKey的长度为字节。例如,使用值64生成512位。数据键(64字节为512位)。对于公共密钥长度(128位和256位对称密钥),我们建议您使用KEYSPEC字段,而不是使用此键字段。
*/
@KsYunField(name = "NumberOfBytes")
private Integer NumberOfBytes;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy