Class: Google::Apis::CesV1::EndUserAuthConfigOauth2JwtBearerConfig

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EndUserAuthConfigOauth2JwtBearerConfig

Returns a new instance of EndUserAuthConfigOauth2JwtBearerConfig.



2812
2813
2814
# File 'lib/google/apis/ces_v1/classes.rb', line 2812

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

Instance Attribute Details

#client_keyString

Required. Client parameter name to pass through. Must be in the format $ context.variables.. Corresponds to the JSON property clientKey

Returns:

  • (String)


2798
2799
2800
# File 'lib/google/apis/ces_v1/classes.rb', line 2798

def client_key
  @client_key
end

#issuerString

Required. Issuer parameter name to pass through. Must be in the format $ context.variables.. Corresponds to the JSON property issuer

Returns:

  • (String)


2804
2805
2806
# File 'lib/google/apis/ces_v1/classes.rb', line 2804

def issuer
  @issuer
end

#subjectString

Required. Subject parameter name to pass through. Must be in the format $ context.variables.. Corresponds to the JSON property subject

Returns:

  • (String)


2810
2811
2812
# File 'lib/google/apis/ces_v1/classes.rb', line 2810

def subject
  @subject
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2817
2818
2819
2820
2821
# File 'lib/google/apis/ces_v1/classes.rb', line 2817

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