Class: Google::Apis::CloudkmsV1::AsymmetricDecryptRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudkmsV1::AsymmetricDecryptRequest
- Defined in:
- generated/google/apis/cloudkms_v1/classes.rb,
generated/google/apis/cloudkms_v1/representations.rb,
generated/google/apis/cloudkms_v1/representations.rb
Overview
Request message for KeyManagementService.AsymmetricDecrypt.
Instance Attribute Summary collapse
-
#ciphertext ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AsymmetricDecryptRequest
constructor
A new instance of AsymmetricDecryptRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AsymmetricDecryptRequest
Returns a new instance of AsymmetricDecryptRequest
36 37 38 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 36 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ciphertext ⇒ String
Required. The data encrypted with the named CryptoKeyVersion's public
key using OAEP.
Corresponds to the JSON property ciphertext
NOTE: Values are automatically base64 encoded/decoded in the client library.
34 35 36 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 34 def ciphertext @ciphertext end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
41 42 43 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 41 def update!(**args) @ciphertext = args[:ciphertext] if args.key?(:ciphertext) end |