Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebService
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebService
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
Represents configuration for a generic web service.
Instance Attribute Summary collapse
-
#allowed_ca_certs ⇒ Array<String>
Optional.
-
#http_method ⇒ String
Optional.
-
#parameter_mapping ⇒ Hash<String,String>
Optional.
-
#password ⇒ String
The password for HTTP Basic authentication.
-
#request_body ⇒ String
Optional.
-
#request_headers ⇒ Hash<String,String>
The HTTP request headers to send together with webhook requests.
-
#uri ⇒ String
Required.
-
#username ⇒ String
The user name for HTTP Basic authentication.
-
#webhook_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3WebhookGenericWebService
constructor
A new instance of GoogleCloudDialogflowCxV3WebhookGenericWebService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3WebhookGenericWebService
Returns a new instance of GoogleCloudDialogflowCxV3WebhookGenericWebService.
6374 6375 6376 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6374 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allowed_ca_certs ⇒ Array<String>
Optional. Specifies a list of allowed custom CA certificates (in DER format)
for HTTPS verification. This overrides the default SSL trust store. If this is
empty or unspecified, Dialogflow will use Google's default trust store to
verify certificates. N.B. Make sure the HTTPS server certificates are signed
with "subject alt name". For instance a certificate can be self-signed using
the following command, openssl x509 -req -days 200 -in example.com.csr \ -
signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
nsubjectAltName='DNS:www.example.com'")
Corresponds to the JSON property allowedCaCerts
6327 6328 6329 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6327 def allowed_ca_certs @allowed_ca_certs end |
#http_method ⇒ String
Optional. HTTP method for the flexible webhook calls. Standard webhook always
uses POST.
Corresponds to the JSON property httpMethod
6333 6334 6335 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6333 def http_method @http_method end |
#parameter_mapping ⇒ Hash<String,String>
Optional. Maps the values extracted from specific fields of the flexible
webhook response into session parameters. - Key: session parameter name -
Value: field path in the webhook response
Corresponds to the JSON property parameterMapping
6340 6341 6342 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6340 def parameter_mapping @parameter_mapping end |
#password ⇒ String
The password for HTTP Basic authentication.
Corresponds to the JSON property password
6345 6346 6347 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6345 def password @password end |
#request_body ⇒ String
Optional. Defines a custom JSON object as request body to send to flexible
webhook.
Corresponds to the JSON property requestBody
6351 6352 6353 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6351 def request_body @request_body end |
#request_headers ⇒ Hash<String,String>
The HTTP request headers to send together with webhook requests.
Corresponds to the JSON property requestHeaders
6356 6357 6358 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6356 def request_headers @request_headers end |
#uri ⇒ String
Required. The webhook URI for receiving POST requests. It must use https
protocol.
Corresponds to the JSON property uri
6362 6363 6364 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6362 def uri @uri end |
#username ⇒ String
The user name for HTTP Basic authentication.
Corresponds to the JSON property username
6367 6368 6369 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6367 def username @username end |
#webhook_type ⇒ String
Optional. Type of the webhook.
Corresponds to the JSON property webhookType
6372 6373 6374 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6372 def webhook_type @webhook_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6379 def update!(**args) @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs) @http_method = args[:http_method] if args.key?(:http_method) @parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping) @password = args[:password] if args.key?(:password) @request_body = args[:request_body] if args.key?(:request_body) @request_headers = args[:request_headers] if args.key?(:request_headers) @uri = args[:uri] if args.key?(:uri) @username = args[:username] if args.key?(:username) @webhook_type = args[:webhook_type] if args.key?(:webhook_type) end |