Class: Google::Apis::ConnectorsV1::JwtClaims
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::JwtClaims
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
JWT claims used for the jwt-bearer authorization grant.
Instance Attribute Summary collapse
-
#audience ⇒ String
Value for the "aud" claim.
-
#issuer ⇒ String
Value for the "iss" claim.
-
#subject ⇒ String
Value for the "sub" claim.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JwtClaims
constructor
A new instance of JwtClaims.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ JwtClaims
Returns a new instance of JwtClaims.
2848 2849 2850 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2848 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audience ⇒ String
Value for the "aud" claim.
Corresponds to the JSON property audience
2836 2837 2838 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2836 def audience @audience end |
#issuer ⇒ String
Value for the "iss" claim.
Corresponds to the JSON property issuer
2841 2842 2843 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2841 def issuer @issuer end |
#subject ⇒ String
Value for the "sub" claim.
Corresponds to the JSON property subject
2846 2847 2848 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2846 def subject @subject end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2853 2854 2855 2856 2857 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2853 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 |