class Google::Apis::ConnectorsV1::JwtClaims

JWT claims used for the jwt-bearer authorization grant.

Attributes

audience[RW]

Value for the “aud” claim. Corresponds to the JSON property ‘audience` @return [String]

issuer[RW]

Value for the “iss” claim. Corresponds to the JSON property ‘issuer` @return [String]

subject[RW]

Value for the “sub” claim. Corresponds to the JSON property ‘subject` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 995
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/connectors_v1/classes.rb, line 1000
def update!(**args)
  @audience = args[:audience] if args.key?(:audience)
  @issuer = args[:issuer] if args.key?(:issuer)
  @subject = args[:subject] if args.key?(:subject)
end