Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

JWT Profile Oauth 2.0 Authorization Grant authentication configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig

Returns a new instance of GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig.



14761
14762
14763
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 14761

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

Instance Attribute Details

#client_keyString

Required. Client key value or parameter name to pass it through. Corresponds to the JSON property clientKey

Returns:

  • (String)


14749
14750
14751
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 14749

def client_key
  @client_key
end

#issuerString

Required. Issuer value or parameter name to pass it through. Corresponds to the JSON property issuer

Returns:

  • (String)


14754
14755
14756
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 14754

def issuer
  @issuer
end

#subjectString

Required. Subject value or parameter name to pass it through. Corresponds to the JSON property subject

Returns:

  • (String)


14759
14760
14761
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 14759

def subject
  @subject
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14766
14767
14768
14769
14770
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 14766

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