diff --git a/VERSION b/VERSION index 67e0800c5..0adc76e33 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1970 \ No newline at end of file +1.36.1971 \ No newline at end of file diff --git a/kms/include/alibabacloud/kms/model/AsymmetricDecryptRequest.h b/kms/include/alibabacloud/kms/model/AsymmetricDecryptRequest.h index cfc9a3fee..9705fce46 100644 --- a/kms/include/alibabacloud/kms/model/AsymmetricDecryptRequest.h +++ b/kms/include/alibabacloud/kms/model/AsymmetricDecryptRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT AsymmetricDecryptRequest : public RpcServiceReques public: AsymmetricDecryptRequest(); ~AsymmetricDecryptRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getKeyVersionId() const; void setKeyVersionId(const std::string &keyVersionId); std::string getKeyId() const; @@ -40,6 +42,7 @@ public: void setAlgorithm(const std::string &algorithm); private: + std::string dryRun_; std::string keyVersionId_; std::string keyId_; std::string ciphertextBlob_; diff --git a/kms/include/alibabacloud/kms/model/AsymmetricEncryptRequest.h b/kms/include/alibabacloud/kms/model/AsymmetricEncryptRequest.h index 0d5784f8e..11e3f660d 100644 --- a/kms/include/alibabacloud/kms/model/AsymmetricEncryptRequest.h +++ b/kms/include/alibabacloud/kms/model/AsymmetricEncryptRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT AsymmetricEncryptRequest : public RpcServiceReques public: AsymmetricEncryptRequest(); ~AsymmetricEncryptRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getKeyVersionId() const; void setKeyVersionId(const std::string &keyVersionId); std::string getKeyId() const; @@ -40,6 +42,7 @@ public: void setAlgorithm(const std::string &algorithm); private: + std::string dryRun_; std::string keyVersionId_; std::string keyId_; std::string plaintext_; diff --git a/kms/include/alibabacloud/kms/model/AsymmetricSignRequest.h b/kms/include/alibabacloud/kms/model/AsymmetricSignRequest.h index f17d4195d..77a9ff907 100644 --- a/kms/include/alibabacloud/kms/model/AsymmetricSignRequest.h +++ b/kms/include/alibabacloud/kms/model/AsymmetricSignRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT AsymmetricSignRequest : public RpcServiceRequest { public: AsymmetricSignRequest(); ~AsymmetricSignRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getKeyVersionId() const; void setKeyVersionId(const std::string &keyVersionId); std::string getKeyId() const; @@ -40,6 +42,7 @@ public: void setAlgorithm(const std::string &algorithm); private: + std::string dryRun_; std::string keyVersionId_; std::string keyId_; std::string digest_; diff --git a/kms/include/alibabacloud/kms/model/AsymmetricVerifyRequest.h b/kms/include/alibabacloud/kms/model/AsymmetricVerifyRequest.h index 0778fe382..6115404d5 100644 --- a/kms/include/alibabacloud/kms/model/AsymmetricVerifyRequest.h +++ b/kms/include/alibabacloud/kms/model/AsymmetricVerifyRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT AsymmetricVerifyRequest : public RpcServiceRequest public: AsymmetricVerifyRequest(); ~AsymmetricVerifyRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getKeyVersionId() const; void setKeyVersionId(const std::string &keyVersionId); std::string getKeyId() const; @@ -42,6 +44,7 @@ public: void setAlgorithm(const std::string &algorithm); private: + std::string dryRun_; std::string keyVersionId_; std::string keyId_; std::string digest_; diff --git a/kms/include/alibabacloud/kms/model/DecryptRequest.h b/kms/include/alibabacloud/kms/model/DecryptRequest.h index 0aeec89f6..7a2987a67 100644 --- a/kms/include/alibabacloud/kms/model/DecryptRequest.h +++ b/kms/include/alibabacloud/kms/model/DecryptRequest.h @@ -30,12 +30,15 @@ class ALIBABACLOUD_KMS_EXPORT DecryptRequest : public RpcServiceRequest { public: DecryptRequest(); ~DecryptRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getEncryptionContext() const; void setEncryptionContext(const std::string &encryptionContext); std::string getCiphertextBlob() const; void setCiphertextBlob(const std::string &ciphertextBlob); private: + std::string dryRun_; std::string encryptionContext_; std::string ciphertextBlob_; }; diff --git a/kms/include/alibabacloud/kms/model/EncryptRequest.h b/kms/include/alibabacloud/kms/model/EncryptRequest.h index 385683507..8b1e291df 100644 --- a/kms/include/alibabacloud/kms/model/EncryptRequest.h +++ b/kms/include/alibabacloud/kms/model/EncryptRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT EncryptRequest : public RpcServiceRequest { public: EncryptRequest(); ~EncryptRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getKeyId() const; void setKeyId(const std::string &keyId); std::string getPlaintext() const; @@ -38,6 +40,7 @@ public: void setEncryptionContext(const std::string &encryptionContext); private: + std::string dryRun_; std::string keyId_; std::string plaintext_; std::string encryptionContext_; diff --git a/kms/include/alibabacloud/kms/model/ExportDataKeyRequest.h b/kms/include/alibabacloud/kms/model/ExportDataKeyRequest.h index 59af1eda8..40f8f005e 100644 --- a/kms/include/alibabacloud/kms/model/ExportDataKeyRequest.h +++ b/kms/include/alibabacloud/kms/model/ExportDataKeyRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT ExportDataKeyRequest : public RpcServiceRequest { public: ExportDataKeyRequest(); ~ExportDataKeyRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getPublicKeyBlob() const; void setPublicKeyBlob(const std::string &publicKeyBlob); std::string getEncryptionContext() const; @@ -42,6 +44,7 @@ public: void setWrappingKeySpec(const std::string &wrappingKeySpec); private: + std::string dryRun_; std::string publicKeyBlob_; std::string encryptionContext_; std::string wrappingAlgorithm_; diff --git a/kms/include/alibabacloud/kms/model/GenerateAndExportDataKeyRequest.h b/kms/include/alibabacloud/kms/model/GenerateAndExportDataKeyRequest.h index d1ca69dd6..bf9c0310e 100644 --- a/kms/include/alibabacloud/kms/model/GenerateAndExportDataKeyRequest.h +++ b/kms/include/alibabacloud/kms/model/GenerateAndExportDataKeyRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT GenerateAndExportDataKeyRequest : public RpcServic public: GenerateAndExportDataKeyRequest(); ~GenerateAndExportDataKeyRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getKeyId() const; void setKeyId(const std::string &keyId); std::string getKeySpec() const; @@ -46,6 +48,7 @@ public: void setWrappingKeySpec(const std::string &wrappingKeySpec); private: + std::string dryRun_; std::string keyId_; std::string keySpec_; int numberOfBytes_; diff --git a/kms/include/alibabacloud/kms/model/GenerateDataKeyRequest.h b/kms/include/alibabacloud/kms/model/GenerateDataKeyRequest.h index 2c1ce0187..f398df0f2 100644 --- a/kms/include/alibabacloud/kms/model/GenerateDataKeyRequest.h +++ b/kms/include/alibabacloud/kms/model/GenerateDataKeyRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT GenerateDataKeyRequest : public RpcServiceRequest public: GenerateDataKeyRequest(); ~GenerateDataKeyRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getKeyId() const; void setKeyId(const std::string &keyId); std::string getKeySpec() const; @@ -40,6 +42,7 @@ public: void setEncryptionContext(const std::string &encryptionContext); private: + std::string dryRun_; std::string keyId_; std::string keySpec_; int numberOfBytes_; diff --git a/kms/include/alibabacloud/kms/model/GenerateDataKeyWithoutPlaintextRequest.h b/kms/include/alibabacloud/kms/model/GenerateDataKeyWithoutPlaintextRequest.h index 590eee91a..0b81c6fa4 100644 --- a/kms/include/alibabacloud/kms/model/GenerateDataKeyWithoutPlaintextRequest.h +++ b/kms/include/alibabacloud/kms/model/GenerateDataKeyWithoutPlaintextRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT GenerateDataKeyWithoutPlaintextRequest : public Rp public: GenerateDataKeyWithoutPlaintextRequest(); ~GenerateDataKeyWithoutPlaintextRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getKeyId() const; void setKeyId(const std::string &keyId); std::string getKeySpec() const; @@ -40,6 +42,7 @@ public: void setEncryptionContext(const std::string &encryptionContext); private: + std::string dryRun_; std::string keyId_; std::string keySpec_; int numberOfBytes_; diff --git a/kms/include/alibabacloud/kms/model/GetPublicKeyRequest.h b/kms/include/alibabacloud/kms/model/GetPublicKeyRequest.h index 4e27ecdac..d04ee60fd 100644 --- a/kms/include/alibabacloud/kms/model/GetPublicKeyRequest.h +++ b/kms/include/alibabacloud/kms/model/GetPublicKeyRequest.h @@ -30,12 +30,15 @@ class ALIBABACLOUD_KMS_EXPORT GetPublicKeyRequest : public RpcServiceRequest { public: GetPublicKeyRequest(); ~GetPublicKeyRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getKeyVersionId() const; void setKeyVersionId(const std::string &keyVersionId); std::string getKeyId() const; void setKeyId(const std::string &keyId); private: + std::string dryRun_; std::string keyVersionId_; std::string keyId_; }; diff --git a/kms/include/alibabacloud/kms/model/GetSecretValueRequest.h b/kms/include/alibabacloud/kms/model/GetSecretValueRequest.h index eb4bc76b0..68fa31729 100644 --- a/kms/include/alibabacloud/kms/model/GetSecretValueRequest.h +++ b/kms/include/alibabacloud/kms/model/GetSecretValueRequest.h @@ -30,6 +30,8 @@ class ALIBABACLOUD_KMS_EXPORT GetSecretValueRequest : public RpcServiceRequest { public: GetSecretValueRequest(); ~GetSecretValueRequest(); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getVersionId() const; void setVersionId(const std::string &versionId); std::string getVersionStage() const; @@ -40,6 +42,7 @@ public: void setFetchExtendedConfig(bool fetchExtendedConfig); private: + std::string dryRun_; std::string versionId_; std::string versionStage_; std::string secretName_; diff --git a/kms/include/alibabacloud/kms/model/ReEncryptRequest.h b/kms/include/alibabacloud/kms/model/ReEncryptRequest.h index 67d1ad4a7..6be05cfc8 100644 --- a/kms/include/alibabacloud/kms/model/ReEncryptRequest.h +++ b/kms/include/alibabacloud/kms/model/ReEncryptRequest.h @@ -32,6 +32,8 @@ public: ~ReEncryptRequest(); std::string getDestinationEncryptionContext() const; void setDestinationEncryptionContext(const std::string &destinationEncryptionContext); + std::string getDryRun() const; + void setDryRun(const std::string &dryRun); std::string getSourceKeyId() const; void setSourceKeyId(const std::string &sourceKeyId); std::string getSourceEncryptionAlgorithm() const; @@ -47,6 +49,7 @@ public: private: std::string destinationEncryptionContext_; + std::string dryRun_; std::string sourceKeyId_; std::string sourceEncryptionAlgorithm_; std::string sourceKeyVersionId_; diff --git a/kms/src/model/AsymmetricDecryptRequest.cc b/kms/src/model/AsymmetricDecryptRequest.cc index 7379935c1..cd4f4f30e 100644 --- a/kms/src/model/AsymmetricDecryptRequest.cc +++ b/kms/src/model/AsymmetricDecryptRequest.cc @@ -25,6 +25,15 @@ AsymmetricDecryptRequest::AsymmetricDecryptRequest() AsymmetricDecryptRequest::~AsymmetricDecryptRequest() {} +std::string AsymmetricDecryptRequest::getDryRun() const { + return dryRun_; +} + +void AsymmetricDecryptRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string AsymmetricDecryptRequest::getKeyVersionId() const { return keyVersionId_; } diff --git a/kms/src/model/AsymmetricEncryptRequest.cc b/kms/src/model/AsymmetricEncryptRequest.cc index f825a7679..1d4c78852 100644 --- a/kms/src/model/AsymmetricEncryptRequest.cc +++ b/kms/src/model/AsymmetricEncryptRequest.cc @@ -25,6 +25,15 @@ AsymmetricEncryptRequest::AsymmetricEncryptRequest() AsymmetricEncryptRequest::~AsymmetricEncryptRequest() {} +std::string AsymmetricEncryptRequest::getDryRun() const { + return dryRun_; +} + +void AsymmetricEncryptRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string AsymmetricEncryptRequest::getKeyVersionId() const { return keyVersionId_; } diff --git a/kms/src/model/AsymmetricSignRequest.cc b/kms/src/model/AsymmetricSignRequest.cc index 7b6e11c02..65000d6c4 100644 --- a/kms/src/model/AsymmetricSignRequest.cc +++ b/kms/src/model/AsymmetricSignRequest.cc @@ -25,6 +25,15 @@ AsymmetricSignRequest::AsymmetricSignRequest() AsymmetricSignRequest::~AsymmetricSignRequest() {} +std::string AsymmetricSignRequest::getDryRun() const { + return dryRun_; +} + +void AsymmetricSignRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string AsymmetricSignRequest::getKeyVersionId() const { return keyVersionId_; } diff --git a/kms/src/model/AsymmetricVerifyRequest.cc b/kms/src/model/AsymmetricVerifyRequest.cc index 20f413179..2893bdfd1 100644 --- a/kms/src/model/AsymmetricVerifyRequest.cc +++ b/kms/src/model/AsymmetricVerifyRequest.cc @@ -25,6 +25,15 @@ AsymmetricVerifyRequest::AsymmetricVerifyRequest() AsymmetricVerifyRequest::~AsymmetricVerifyRequest() {} +std::string AsymmetricVerifyRequest::getDryRun() const { + return dryRun_; +} + +void AsymmetricVerifyRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string AsymmetricVerifyRequest::getKeyVersionId() const { return keyVersionId_; } diff --git a/kms/src/model/DecryptRequest.cc b/kms/src/model/DecryptRequest.cc index dbf78ec6d..433a0bfbb 100644 --- a/kms/src/model/DecryptRequest.cc +++ b/kms/src/model/DecryptRequest.cc @@ -25,6 +25,15 @@ DecryptRequest::DecryptRequest() DecryptRequest::~DecryptRequest() {} +std::string DecryptRequest::getDryRun() const { + return dryRun_; +} + +void DecryptRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string DecryptRequest::getEncryptionContext() const { return encryptionContext_; } diff --git a/kms/src/model/EncryptRequest.cc b/kms/src/model/EncryptRequest.cc index 68d1520ba..d10c88093 100644 --- a/kms/src/model/EncryptRequest.cc +++ b/kms/src/model/EncryptRequest.cc @@ -25,6 +25,15 @@ EncryptRequest::EncryptRequest() EncryptRequest::~EncryptRequest() {} +std::string EncryptRequest::getDryRun() const { + return dryRun_; +} + +void EncryptRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string EncryptRequest::getKeyId() const { return keyId_; } diff --git a/kms/src/model/ExportDataKeyRequest.cc b/kms/src/model/ExportDataKeyRequest.cc index 2cbd800e6..9f59af9cd 100644 --- a/kms/src/model/ExportDataKeyRequest.cc +++ b/kms/src/model/ExportDataKeyRequest.cc @@ -25,6 +25,15 @@ ExportDataKeyRequest::ExportDataKeyRequest() ExportDataKeyRequest::~ExportDataKeyRequest() {} +std::string ExportDataKeyRequest::getDryRun() const { + return dryRun_; +} + +void ExportDataKeyRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string ExportDataKeyRequest::getPublicKeyBlob() const { return publicKeyBlob_; } diff --git a/kms/src/model/GenerateAndExportDataKeyRequest.cc b/kms/src/model/GenerateAndExportDataKeyRequest.cc index a8ce74c76..9d1581b96 100644 --- a/kms/src/model/GenerateAndExportDataKeyRequest.cc +++ b/kms/src/model/GenerateAndExportDataKeyRequest.cc @@ -25,6 +25,15 @@ GenerateAndExportDataKeyRequest::GenerateAndExportDataKeyRequest() GenerateAndExportDataKeyRequest::~GenerateAndExportDataKeyRequest() {} +std::string GenerateAndExportDataKeyRequest::getDryRun() const { + return dryRun_; +} + +void GenerateAndExportDataKeyRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string GenerateAndExportDataKeyRequest::getKeyId() const { return keyId_; } diff --git a/kms/src/model/GenerateDataKeyRequest.cc b/kms/src/model/GenerateDataKeyRequest.cc index 6ecd2fd7d..38e78f991 100644 --- a/kms/src/model/GenerateDataKeyRequest.cc +++ b/kms/src/model/GenerateDataKeyRequest.cc @@ -25,6 +25,15 @@ GenerateDataKeyRequest::GenerateDataKeyRequest() GenerateDataKeyRequest::~GenerateDataKeyRequest() {} +std::string GenerateDataKeyRequest::getDryRun() const { + return dryRun_; +} + +void GenerateDataKeyRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string GenerateDataKeyRequest::getKeyId() const { return keyId_; } diff --git a/kms/src/model/GenerateDataKeyWithoutPlaintextRequest.cc b/kms/src/model/GenerateDataKeyWithoutPlaintextRequest.cc index 14507a0b6..872039323 100644 --- a/kms/src/model/GenerateDataKeyWithoutPlaintextRequest.cc +++ b/kms/src/model/GenerateDataKeyWithoutPlaintextRequest.cc @@ -25,6 +25,15 @@ GenerateDataKeyWithoutPlaintextRequest::GenerateDataKeyWithoutPlaintextRequest() GenerateDataKeyWithoutPlaintextRequest::~GenerateDataKeyWithoutPlaintextRequest() {} +std::string GenerateDataKeyWithoutPlaintextRequest::getDryRun() const { + return dryRun_; +} + +void GenerateDataKeyWithoutPlaintextRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string GenerateDataKeyWithoutPlaintextRequest::getKeyId() const { return keyId_; } diff --git a/kms/src/model/GetPublicKeyRequest.cc b/kms/src/model/GetPublicKeyRequest.cc index c8698e6ad..37c22890b 100644 --- a/kms/src/model/GetPublicKeyRequest.cc +++ b/kms/src/model/GetPublicKeyRequest.cc @@ -25,6 +25,15 @@ GetPublicKeyRequest::GetPublicKeyRequest() GetPublicKeyRequest::~GetPublicKeyRequest() {} +std::string GetPublicKeyRequest::getDryRun() const { + return dryRun_; +} + +void GetPublicKeyRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string GetPublicKeyRequest::getKeyVersionId() const { return keyVersionId_; } diff --git a/kms/src/model/GetSecretValueRequest.cc b/kms/src/model/GetSecretValueRequest.cc index f5f1c1df8..14c8ea917 100644 --- a/kms/src/model/GetSecretValueRequest.cc +++ b/kms/src/model/GetSecretValueRequest.cc @@ -25,6 +25,15 @@ GetSecretValueRequest::GetSecretValueRequest() GetSecretValueRequest::~GetSecretValueRequest() {} +std::string GetSecretValueRequest::getDryRun() const { + return dryRun_; +} + +void GetSecretValueRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string GetSecretValueRequest::getVersionId() const { return versionId_; } diff --git a/kms/src/model/ReEncryptRequest.cc b/kms/src/model/ReEncryptRequest.cc index 0871f070c..ea6cc27ae 100644 --- a/kms/src/model/ReEncryptRequest.cc +++ b/kms/src/model/ReEncryptRequest.cc @@ -34,6 +34,15 @@ void ReEncryptRequest::setDestinationEncryptionContext(const std::string &destin setParameter(std::string("DestinationEncryptionContext"), destinationEncryptionContext); } +std::string ReEncryptRequest::getDryRun() const { + return dryRun_; +} + +void ReEncryptRequest::setDryRun(const std::string &dryRun) { + dryRun_ = dryRun; + setParameter(std::string("DryRun"), dryRun); +} + std::string ReEncryptRequest::getSourceKeyId() const { return sourceKeyId_; }