Class: Google::Apis::CloudkmsV1::AsymmetricSignResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudkmsV1::AsymmetricSignResponse
- 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.AsymmetricSign.
Instance Attribute Summary collapse
-
#signature ⇒ String
The created signature.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AsymmetricSignResponse
constructor
A new instance of AsymmetricSignResponse.
-
#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) ⇒ AsymmetricSignResponse
Returns a new instance of AsymmetricSignResponse
95 96 97 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 95 def initialize(**args) update!(**args) end |
Instance Attribute Details
#signature ⇒ String
The created signature.
Corresponds to the JSON property signature
NOTE: Values are automatically base64 encoded/decoded in the client library.
93 94 95 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 93 def signature @signature end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
100 101 102 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 100 def update!(**args) @signature = args[:signature] if args.key?(:signature) end |