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
| 1113 1114 1115 | # File 'generated/google/apis/iam_v1/classes.rb', line 1113 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
| 1111 1112 1113 | # File 'generated/google/apis/iam_v1/classes.rb', line 1111 def payload @payload end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1118 1119 1120 | # File 'generated/google/apis/iam_v1/classes.rb', line 1118 def update!(**args) @payload = args[:payload] if args.key?(:payload) end |