Class: Google::Apis::IamV1::SignBlobRequest
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::SignBlobRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/iam_v1/classes.rb,
generated/google/apis/iam_v1/representations.rb,
generated/google/apis/iam_v1/representations.rb
Overview
The service account sign blob request.
Instance Attribute Summary collapse
-
#bytes_to_sign ⇒ String
The bytes to sign.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SignBlobRequest
constructor
A new instance of SignBlobRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SignBlobRequest
Returns a new instance of SignBlobRequest
1047 1048 1049 |
# File 'generated/google/apis/iam_v1/classes.rb', line 1047 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bytes_to_sign ⇒ String
The bytes to sign.
Corresponds to the JSON property bytesToSign
NOTE: Values are automatically base64 encoded/decoded in the client library.
1045 1046 1047 |
# File 'generated/google/apis/iam_v1/classes.rb', line 1045 def bytes_to_sign @bytes_to_sign end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1052 1053 1054 |
# File 'generated/google/apis/iam_v1/classes.rb', line 1052 def update!(**args) @bytes_to_sign = args[:bytes_to_sign] if args.key?(:bytes_to_sign) end |