Class: Google::Apis::IamV1::SignJwtRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SignJwtRequest

Returns a new instance of SignJwtRequest.



1585
1586
1587
# File 'generated/google/apis/iam_v1/classes.rb', line 1585

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#payloadString

Required. The JWT payload to sign, a JSON JWT Claim set. Corresponds to the JSON property payload

Returns:

  • (String)


1583
1584
1585
# File 'generated/google/apis/iam_v1/classes.rb', line 1583

def payload
  @payload
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1590
1591
1592
# File 'generated/google/apis/iam_v1/classes.rb', line 1590

def update!(**args)
  @payload = args[:payload] if args.key?(:payload)
end