Class: Google::Apis::IamV1::SignJwtRequest
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::SignJwtRequest
- 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 JWT request.
Instance Attribute Summary collapse
-
#payload ⇒ String
The JWT payload to sign, a JSON JWT Claim set.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SignJwtRequest
constructor
A new instance of SignJwtRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SignJwtRequest
Returns a new instance of SignJwtRequest
1092 1093 1094 |
# File 'generated/google/apis/iam_v1/classes.rb', line 1092 def initialize(**args) update!(**args) end |
Instance Attribute Details
#payload ⇒ String
The JWT payload to sign, a JSON JWT Claim set.
Corresponds to the JSON property payload
1090 1091 1092 |
# File 'generated/google/apis/iam_v1/classes.rb', line 1090 def payload @payload end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1097 1098 1099 |
# File 'generated/google/apis/iam_v1/classes.rb', line 1097 def update!(**args) @payload = args[:payload] if args.key?(:payload) end |