Class: Google::Apis::CloudkmsV1::EncryptResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudkmsV1::EncryptResponse
- 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.Encrypt.
Instance Attribute Summary collapse
-
#ciphertext ⇒ String
The encrypted data.
-
#name ⇒ String
The resource name of the CryptoKeyVersion used in encryption.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EncryptResponse
constructor
A new instance of EncryptResponse.
-
#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) ⇒ EncryptResponse
Returns a new instance of EncryptResponse
244 245 246 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 244 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ciphertext ⇒ String
The encrypted data.
Corresponds to the JSON property ciphertext
NOTE: Values are automatically base64 encoded/decoded in the client library.
242 243 244 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 242 def ciphertext @ciphertext end |
#name ⇒ String
The resource name of the CryptoKeyVersion used in encryption.
Corresponds to the JSON property name
236 237 238 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 236 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
249 250 251 252 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 249 def update!(**args) @name = args[:name] if args.key?(:name) @ciphertext = args[:ciphertext] if args.key?(:ciphertext) end |