All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dkms.gcs.sdk.models.AdvanceDecryptResponse Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dkms.gcs.sdk.models;

import com.aliyun.tea.*;

public class AdvanceDecryptResponse extends TeaModel {
    /**
     * 

密钥的全局唯一标识符该参数也可以被指定为密钥别名

*/ @NameInMap("KeyId") public String keyId; /** *

待加密的明文数据

*/ @NameInMap("Plaintext") public byte[] plaintext; /** *

请求ID

*/ @NameInMap("RequestId") public String requestId; /** *

加密算法

*/ @NameInMap("Algorithm") public String algorithm; /** *

填充模式

*/ @NameInMap("PaddingMode") public String paddingMode; /** *

密钥版本唯一标识符

*/ @NameInMap("KeyVersionId") public String keyVersionId; /** *

响应头

*/ @NameInMap("responseHeaders") public java.util.Map responseHeaders; public static AdvanceDecryptResponse build(java.util.Map map) throws Exception { AdvanceDecryptResponse self = new AdvanceDecryptResponse(); return TeaModel.build(map, self); } public AdvanceDecryptResponse setKeyId(String keyId) { this.keyId = keyId; return this; } public String getKeyId() { return this.keyId; } public AdvanceDecryptResponse setPlaintext(byte[] plaintext) { this.plaintext = plaintext; return this; } public byte[] getPlaintext() { return this.plaintext; } public AdvanceDecryptResponse setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public AdvanceDecryptResponse setAlgorithm(String algorithm) { this.algorithm = algorithm; return this; } public String getAlgorithm() { return this.algorithm; } public AdvanceDecryptResponse setPaddingMode(String paddingMode) { this.paddingMode = paddingMode; return this; } public String getPaddingMode() { return this.paddingMode; } public AdvanceDecryptResponse setKeyVersionId(String keyVersionId) { this.keyVersionId = keyVersionId; return this; } public String getKeyVersionId() { return this.keyVersionId; } public AdvanceDecryptResponse setResponseHeaders(java.util.Map responseHeaders) { this.responseHeaders = responseHeaders; return this; } public java.util.Map getResponseHeaders() { return this.responseHeaders; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy