Class: Google::Apis::CesV1::EndUserAuthConfigOauth2JwtBearerConfig
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::EndUserAuthConfigOauth2JwtBearerConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
JWT Profile Oauth 2.0 Authorization Grant authentication configuration.
Instance Attribute Summary collapse
-
#client_key ⇒ String
Required.
-
#issuer ⇒ String
Required.
-
#subject ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EndUserAuthConfigOauth2JwtBearerConfig
constructor
A new instance of EndUserAuthConfigOauth2JwtBearerConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EndUserAuthConfigOauth2JwtBearerConfig
Returns a new instance of EndUserAuthConfigOauth2JwtBearerConfig.
2637 2638 2639 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2637 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_key ⇒ String
Required. Client parameter name to pass through. Must be in the format $
context.variables..
Corresponds to the JSON property clientKey
2623 2624 2625 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2623 def client_key @client_key end |
#issuer ⇒ String
Required. Issuer parameter name to pass through. Must be in the format $
context.variables..
Corresponds to the JSON property issuer
2629 2630 2631 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2629 def issuer @issuer end |
#subject ⇒ String
Required. Subject parameter name to pass through. Must be in the format $
context.variables..
Corresponds to the JSON property subject
2635 2636 2637 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2635 def subject @subject end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2642 2643 2644 2645 2646 |
# File 'lib/google/apis/ces_v1/classes.rb', line 2642 def update!(**args) @client_key = args[:client_key] if args.key?(:client_key) @issuer = args[:issuer] if args.key?(:issuer) @subject = args[:subject] if args.key?(:subject) end |