Class: Google::Apis::IamV1::SignJwtResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::IamV1::SignJwtResponse
 
 
- 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 response.
Instance Attribute Summary collapse
- 
  
    
      #key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The id of the key used to sign the JWT.
 - 
  
    
      #signed_jwt  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The signed JWT.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SignJwtResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SignJwtResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SignJwtResponse
Returns a new instance of SignJwtResponse
      1393 1394 1395  | 
    
      # File 'generated/google/apis/iam_v1/classes.rb', line 1393 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#key_id ⇒ String
The id of the key used to sign the JWT.
Corresponds to the JSON property keyId
      1386 1387 1388  | 
    
      # File 'generated/google/apis/iam_v1/classes.rb', line 1386 def key_id @key_id end  | 
  
#signed_jwt ⇒ String
The signed JWT.
Corresponds to the JSON property signedJwt
      1391 1392 1393  | 
    
      # File 'generated/google/apis/iam_v1/classes.rb', line 1391 def signed_jwt @signed_jwt end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1398 1399 1400 1401  | 
    
      # File 'generated/google/apis/iam_v1/classes.rb', line 1398 def update!(**args) @key_id = args[:key_id] if args.key?(:key_id) @signed_jwt = args[:signed_jwt] if args.key?(:signed_jwt) end  |