Class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/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) ⇒ GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims
constructor
A new instance of GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims
Returns a new instance of GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims.
5015 5016 5017 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5015 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audience ⇒ String
Value for the "aud" claim.
Corresponds to the JSON property audience
5003 5004 5005 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5003 def audience @audience end |
#issuer ⇒ String
Value for the "iss" claim.
Corresponds to the JSON property issuer
5008 5009 5010 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5008 def issuer @issuer end |
#subject ⇒ String
Value for the "sub" claim.
Corresponds to the JSON property subject
5013 5014 5015 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5013 def subject @subject end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5020 5021 5022 5023 5024 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5020 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 |