Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig
- 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
-
#client_key ⇒ String
Required.
-
#issuer ⇒ String
Required.
-
#subject ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_key ⇒ String
Required. Client key value or parameter name to pass it through.
Corresponds to the JSON property clientKey
14749 14750 14751 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 14749 def client_key @client_key end |
#issuer ⇒ String
Required. Issuer value or parameter name to pass it through.
Corresponds to the JSON property issuer
14754 14755 14756 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 14754 def issuer @issuer end |
#subject ⇒ String
Required. Subject value or parameter name to pass it through.
Corresponds to the JSON property subject
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 |