Class: Google::Apis::CloudkmsV1::DecryptResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudkmsV1::DecryptResponse
- Defined in:
- generated/google/apis/cloudkms_v1/classes.rb,
generated/google/apis/cloudkms_v1/representations.rb,
generated/google/apis/cloudkms_v1/representations.rb
Overview
Response message for KeyManagementService.Decrypt.
Instance Attribute Summary collapse
-
#plaintext ⇒ String
The decrypted data originally supplied in EncryptRequest.plaintext.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DecryptResponse
constructor
A new instance of DecryptResponse.
-
#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) ⇒ DecryptResponse
Returns a new instance of DecryptResponse
353 354 355 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 353 def initialize(**args) update!(**args) end |
Instance Attribute Details
#plaintext ⇒ String
The decrypted data originally supplied in EncryptRequest.plaintext.
Corresponds to the JSON property plaintext
NOTE: Values are automatically base64 encoded/decoded in the client library.
351 352 353 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 351 def plaintext @plaintext end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
358 359 360 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 358 def update!(**args) @plaintext = args[:plaintext] if args.key?(:plaintext) end |