google-apis-dialogflow_v3beta1 0.36.0 → 0.37.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6d4a7d410401ba3fa270525227636d32d32d1cbb7f6459ff1ae1cf5a3cabe43
|
4
|
+
data.tar.gz: d08e7a83e042d94726140a76113451c9a2779755afb9ebf8ebb5b496de30e934
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abfa43f566cddf48640d6b8c4213c1b5440e92c5430577392c5d529f86da803b99af95fe2b14916857e4c9e14af45751ca4813187c78cd30f6049156e261231e
|
7
|
+
data.tar.gz: 4af496acd2b97ff088d967cbfb9b31e612dee2c0b4e655ae71513dca252d9d6f95730ba8cd4dc77f5b1b724cad032ba9f709475f6b7be36f3311e992a46ba877
|
data/CHANGELOG.md
CHANGED
@@ -456,6 +456,11 @@ module Google
|
|
456
456
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig>]
|
457
457
|
attr_accessor :version_configs
|
458
458
|
|
459
|
+
# Configuration for webhooks.
|
460
|
+
# Corresponds to the JSON property `webhookConfig`
|
461
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig]
|
462
|
+
attr_accessor :webhook_config
|
463
|
+
|
459
464
|
def initialize(**args)
|
460
465
|
update!(**args)
|
461
466
|
end
|
@@ -468,6 +473,7 @@ module Google
|
|
468
473
|
@test_cases_config = args[:test_cases_config] if args.key?(:test_cases_config)
|
469
474
|
@update_time = args[:update_time] if args.key?(:update_time)
|
470
475
|
@version_configs = args[:version_configs] if args.key?(:version_configs)
|
476
|
+
@webhook_config = args[:webhook_config] if args.key?(:webhook_config)
|
471
477
|
end
|
472
478
|
end
|
473
479
|
|
@@ -526,6 +532,27 @@ module Google
|
|
526
532
|
end
|
527
533
|
end
|
528
534
|
|
535
|
+
# Configuration for webhooks.
|
536
|
+
class GoogleCloudDialogflowCxV3EnvironmentWebhookConfig
|
537
|
+
include Google::Apis::Core::Hashable
|
538
|
+
|
539
|
+
# The list of webhooks to override for the agent environment. The webhook must
|
540
|
+
# exist in the agent. You can override fields in `generic_web_service` and `
|
541
|
+
# service_directory`.
|
542
|
+
# Corresponds to the JSON property `webhookOverrides`
|
543
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3Webhook>]
|
544
|
+
attr_accessor :webhook_overrides
|
545
|
+
|
546
|
+
def initialize(**args)
|
547
|
+
update!(**args)
|
548
|
+
end
|
549
|
+
|
550
|
+
# Update properties of this object
|
551
|
+
def update!(**args)
|
552
|
+
@webhook_overrides = args[:webhook_overrides] if args.key?(:webhook_overrides)
|
553
|
+
end
|
554
|
+
end
|
555
|
+
|
529
556
|
# An event handler specifies an event that can be handled during a session. When
|
530
557
|
# the specified event happens, the following actions are taken in order: * If
|
531
558
|
# there is a `trigger_fulfillment` associated with the event, it will be called.
|
@@ -2493,6 +2520,115 @@ module Google
|
|
2493
2520
|
end
|
2494
2521
|
end
|
2495
2522
|
|
2523
|
+
# Webhooks host the developer's business logic. During a session, webhooks allow
|
2524
|
+
# the developer to use the data extracted by Dialogflow's natural language
|
2525
|
+
# processing to generate dynamic responses, validate collected data, or trigger
|
2526
|
+
# actions on the backend.
|
2527
|
+
class GoogleCloudDialogflowCxV3Webhook
|
2528
|
+
include Google::Apis::Core::Hashable
|
2529
|
+
|
2530
|
+
# Indicates whether the webhook is disabled.
|
2531
|
+
# Corresponds to the JSON property `disabled`
|
2532
|
+
# @return [Boolean]
|
2533
|
+
attr_accessor :disabled
|
2534
|
+
alias_method :disabled?, :disabled
|
2535
|
+
|
2536
|
+
# Required. The human-readable name of the webhook, unique within the agent.
|
2537
|
+
# Corresponds to the JSON property `displayName`
|
2538
|
+
# @return [String]
|
2539
|
+
attr_accessor :display_name
|
2540
|
+
|
2541
|
+
# Represents configuration for a generic web service.
|
2542
|
+
# Corresponds to the JSON property `genericWebService`
|
2543
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService]
|
2544
|
+
attr_accessor :generic_web_service
|
2545
|
+
|
2546
|
+
# The unique identifier of the webhook. Required for the Webhooks.UpdateWebhook
|
2547
|
+
# method. Webhooks.CreateWebhook populates the name automatically. Format: `
|
2548
|
+
# projects//locations//agents//webhooks/`.
|
2549
|
+
# Corresponds to the JSON property `name`
|
2550
|
+
# @return [String]
|
2551
|
+
attr_accessor :name
|
2552
|
+
|
2553
|
+
# Represents configuration for a [Service Directory](https://cloud.google.com/
|
2554
|
+
# service-directory) service.
|
2555
|
+
# Corresponds to the JSON property `serviceDirectory`
|
2556
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig]
|
2557
|
+
attr_accessor :service_directory
|
2558
|
+
|
2559
|
+
# Webhook execution timeout. Execution is considered failed if Dialogflow doesn'
|
2560
|
+
# t receive a response from webhook at the end of the timeout period. Defaults
|
2561
|
+
# to 5 seconds, maximum allowed timeout is 30 seconds.
|
2562
|
+
# Corresponds to the JSON property `timeout`
|
2563
|
+
# @return [String]
|
2564
|
+
attr_accessor :timeout
|
2565
|
+
|
2566
|
+
def initialize(**args)
|
2567
|
+
update!(**args)
|
2568
|
+
end
|
2569
|
+
|
2570
|
+
# Update properties of this object
|
2571
|
+
def update!(**args)
|
2572
|
+
@disabled = args[:disabled] if args.key?(:disabled)
|
2573
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2574
|
+
@generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service)
|
2575
|
+
@name = args[:name] if args.key?(:name)
|
2576
|
+
@service_directory = args[:service_directory] if args.key?(:service_directory)
|
2577
|
+
@timeout = args[:timeout] if args.key?(:timeout)
|
2578
|
+
end
|
2579
|
+
end
|
2580
|
+
|
2581
|
+
# Represents configuration for a generic web service.
|
2582
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebService
|
2583
|
+
include Google::Apis::Core::Hashable
|
2584
|
+
|
2585
|
+
# Optional. Specifies a list of allowed custom CA certificates (in DER format)
|
2586
|
+
# for HTTPS verification. This overrides the default SSL trust store. If this is
|
2587
|
+
# empty or unspecified, Dialogflow will use Google's default trust store to
|
2588
|
+
# verify certificates. N.B. Make sure the HTTPS server certificates are signed
|
2589
|
+
# with "subject alt name". For instance a certificate can be self-signed using
|
2590
|
+
# the following command, ``` openssl x509 -req -days 200 -in example.com.csr \ -
|
2591
|
+
# signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
2592
|
+
# nsubjectAltName='DNS:www.example.com'") ```
|
2593
|
+
# Corresponds to the JSON property `allowedCaCerts`
|
2594
|
+
# @return [Array<String>]
|
2595
|
+
attr_accessor :allowed_ca_certs
|
2596
|
+
|
2597
|
+
# The password for HTTP Basic authentication.
|
2598
|
+
# Corresponds to the JSON property `password`
|
2599
|
+
# @return [String]
|
2600
|
+
attr_accessor :password
|
2601
|
+
|
2602
|
+
# The HTTP request headers to send together with webhook requests.
|
2603
|
+
# Corresponds to the JSON property `requestHeaders`
|
2604
|
+
# @return [Hash<String,String>]
|
2605
|
+
attr_accessor :request_headers
|
2606
|
+
|
2607
|
+
# Required. The webhook URI for receiving POST requests. It must use https
|
2608
|
+
# protocol.
|
2609
|
+
# Corresponds to the JSON property `uri`
|
2610
|
+
# @return [String]
|
2611
|
+
attr_accessor :uri
|
2612
|
+
|
2613
|
+
# The user name for HTTP Basic authentication.
|
2614
|
+
# Corresponds to the JSON property `username`
|
2615
|
+
# @return [String]
|
2616
|
+
attr_accessor :username
|
2617
|
+
|
2618
|
+
def initialize(**args)
|
2619
|
+
update!(**args)
|
2620
|
+
end
|
2621
|
+
|
2622
|
+
# Update properties of this object
|
2623
|
+
def update!(**args)
|
2624
|
+
@allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
|
2625
|
+
@password = args[:password] if args.key?(:password)
|
2626
|
+
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
2627
|
+
@uri = args[:uri] if args.key?(:uri)
|
2628
|
+
@username = args[:username] if args.key?(:username)
|
2629
|
+
end
|
2630
|
+
end
|
2631
|
+
|
2496
2632
|
# The request message for a webhook call. The request is sent as a JSON object
|
2497
2633
|
# and the field names will be presented in camel cases.
|
2498
2634
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
@@ -2783,6 +2919,35 @@ module Google
|
|
2783
2919
|
end
|
2784
2920
|
end
|
2785
2921
|
|
2922
|
+
# Represents configuration for a [Service Directory](https://cloud.google.com/
|
2923
|
+
# service-directory) service.
|
2924
|
+
class GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig
|
2925
|
+
include Google::Apis::Core::Hashable
|
2926
|
+
|
2927
|
+
# Represents configuration for a generic web service.
|
2928
|
+
# Corresponds to the JSON property `genericWebService`
|
2929
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService]
|
2930
|
+
attr_accessor :generic_web_service
|
2931
|
+
|
2932
|
+
# Required. The name of [Service Directory](https://cloud.google.com/service-
|
2933
|
+
# directory) service. Format: `projects//locations//namespaces//services/`. `
|
2934
|
+
# Location ID` of the service directory must be the same as the location of the
|
2935
|
+
# agent.
|
2936
|
+
# Corresponds to the JSON property `service`
|
2937
|
+
# @return [String]
|
2938
|
+
attr_accessor :service
|
2939
|
+
|
2940
|
+
def initialize(**args)
|
2941
|
+
update!(**args)
|
2942
|
+
end
|
2943
|
+
|
2944
|
+
# Update properties of this object
|
2945
|
+
def update!(**args)
|
2946
|
+
@generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service)
|
2947
|
+
@service = args[:service] if args.key?(:service)
|
2948
|
+
end
|
2949
|
+
end
|
2950
|
+
|
2786
2951
|
# Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
|
2787
2952
|
# Settings exposed at lower level overrides the settings exposed at higher level.
|
2788
2953
|
# Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
|
@@ -3951,6 +4116,11 @@ module Google
|
|
3951
4116
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig>]
|
3952
4117
|
attr_accessor :version_configs
|
3953
4118
|
|
4119
|
+
# Configuration for webhooks.
|
4120
|
+
# Corresponds to the JSON property `webhookConfig`
|
4121
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig]
|
4122
|
+
attr_accessor :webhook_config
|
4123
|
+
|
3954
4124
|
def initialize(**args)
|
3955
4125
|
update!(**args)
|
3956
4126
|
end
|
@@ -3963,6 +4133,7 @@ module Google
|
|
3963
4133
|
@test_cases_config = args[:test_cases_config] if args.key?(:test_cases_config)
|
3964
4134
|
@update_time = args[:update_time] if args.key?(:update_time)
|
3965
4135
|
@version_configs = args[:version_configs] if args.key?(:version_configs)
|
4136
|
+
@webhook_config = args[:webhook_config] if args.key?(:webhook_config)
|
3966
4137
|
end
|
3967
4138
|
end
|
3968
4139
|
|
@@ -4021,6 +4192,27 @@ module Google
|
|
4021
4192
|
end
|
4022
4193
|
end
|
4023
4194
|
|
4195
|
+
# Configuration for webhooks.
|
4196
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
|
4197
|
+
include Google::Apis::Core::Hashable
|
4198
|
+
|
4199
|
+
# The list of webhooks to override for the agent environment. The webhook must
|
4200
|
+
# exist in the agent. You can override fields in `generic_web_service` and `
|
4201
|
+
# service_directory`.
|
4202
|
+
# Corresponds to the JSON property `webhookOverrides`
|
4203
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Webhook>]
|
4204
|
+
attr_accessor :webhook_overrides
|
4205
|
+
|
4206
|
+
def initialize(**args)
|
4207
|
+
update!(**args)
|
4208
|
+
end
|
4209
|
+
|
4210
|
+
# Update properties of this object
|
4211
|
+
def update!(**args)
|
4212
|
+
@webhook_overrides = args[:webhook_overrides] if args.key?(:webhook_overrides)
|
4213
|
+
end
|
4214
|
+
end
|
4215
|
+
|
4024
4216
|
# An event handler specifies an event that can be handled during a session. When
|
4025
4217
|
# the specified event happens, the following actions are taken in order: * If
|
4026
4218
|
# there is a `trigger_fulfillment` associated with the event, it will be called.
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220524"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -118,6 +118,12 @@ module Google
|
|
118
118
|
include Google::Apis::Core::JsonObjectSupport
|
119
119
|
end
|
120
120
|
|
121
|
+
class GoogleCloudDialogflowCxV3EnvironmentWebhookConfig
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
121
127
|
class GoogleCloudDialogflowCxV3EventHandler
|
122
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
129
|
|
@@ -454,6 +460,18 @@ module Google
|
|
454
460
|
include Google::Apis::Core::JsonObjectSupport
|
455
461
|
end
|
456
462
|
|
463
|
+
class GoogleCloudDialogflowCxV3Webhook
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
469
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebService
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
|
+
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
473
|
+
end
|
474
|
+
|
457
475
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
458
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
477
|
|
@@ -496,6 +514,12 @@ module Google
|
|
496
514
|
include Google::Apis::Core::JsonObjectSupport
|
497
515
|
end
|
498
516
|
|
517
|
+
class GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
519
|
+
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
521
|
+
end
|
522
|
+
|
499
523
|
class GoogleCloudDialogflowCxV3beta1AdvancedSettings
|
500
524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
525
|
|
@@ -700,6 +724,12 @@ module Google
|
|
700
724
|
include Google::Apis::Core::JsonObjectSupport
|
701
725
|
end
|
702
726
|
|
727
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
|
728
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
729
|
+
|
730
|
+
include Google::Apis::Core::JsonObjectSupport
|
731
|
+
end
|
732
|
+
|
703
733
|
class GoogleCloudDialogflowCxV3beta1EventHandler
|
704
734
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
705
735
|
|
@@ -2717,6 +2747,8 @@ module Google
|
|
2717
2747
|
property :update_time, as: 'updateTime'
|
2718
2748
|
collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig::Representation
|
2719
2749
|
|
2750
|
+
property :webhook_config, as: 'webhookConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig::Representation
|
2751
|
+
|
2720
2752
|
end
|
2721
2753
|
end
|
2722
2754
|
|
@@ -2736,6 +2768,14 @@ module Google
|
|
2736
2768
|
end
|
2737
2769
|
end
|
2738
2770
|
|
2771
|
+
class GoogleCloudDialogflowCxV3EnvironmentWebhookConfig
|
2772
|
+
# @private
|
2773
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2774
|
+
collection :webhook_overrides, as: 'webhookOverrides', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3Webhook, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3Webhook::Representation
|
2775
|
+
|
2776
|
+
end
|
2777
|
+
end
|
2778
|
+
|
2739
2779
|
class GoogleCloudDialogflowCxV3EventHandler
|
2740
2780
|
# @private
|
2741
2781
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3271,6 +3311,31 @@ module Google
|
|
3271
3311
|
end
|
3272
3312
|
end
|
3273
3313
|
|
3314
|
+
class GoogleCloudDialogflowCxV3Webhook
|
3315
|
+
# @private
|
3316
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3317
|
+
property :disabled, as: 'disabled'
|
3318
|
+
property :display_name, as: 'displayName'
|
3319
|
+
property :generic_web_service, as: 'genericWebService', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService::Representation
|
3320
|
+
|
3321
|
+
property :name, as: 'name'
|
3322
|
+
property :service_directory, as: 'serviceDirectory', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig::Representation
|
3323
|
+
|
3324
|
+
property :timeout, as: 'timeout'
|
3325
|
+
end
|
3326
|
+
end
|
3327
|
+
|
3328
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebService
|
3329
|
+
# @private
|
3330
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3331
|
+
collection :allowed_ca_certs, as: 'allowedCaCerts'
|
3332
|
+
property :password, as: 'password'
|
3333
|
+
hash :request_headers, as: 'requestHeaders'
|
3334
|
+
property :uri, as: 'uri'
|
3335
|
+
property :username, as: 'username'
|
3336
|
+
end
|
3337
|
+
end
|
3338
|
+
|
3274
3339
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
3275
3340
|
# @private
|
3276
3341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3354,6 +3419,15 @@ module Google
|
|
3354
3419
|
end
|
3355
3420
|
end
|
3356
3421
|
|
3422
|
+
class GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig
|
3423
|
+
# @private
|
3424
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3425
|
+
property :generic_web_service, as: 'genericWebService', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService::Representation
|
3426
|
+
|
3427
|
+
property :service, as: 'service'
|
3428
|
+
end
|
3429
|
+
end
|
3430
|
+
|
3357
3431
|
class GoogleCloudDialogflowCxV3beta1AdvancedSettings
|
3358
3432
|
# @private
|
3359
3433
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3677,6 +3751,8 @@ module Google
|
|
3677
3751
|
property :update_time, as: 'updateTime'
|
3678
3752
|
collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig::Representation
|
3679
3753
|
|
3754
|
+
property :webhook_config, as: 'webhookConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig::Representation
|
3755
|
+
|
3680
3756
|
end
|
3681
3757
|
end
|
3682
3758
|
|
@@ -3696,6 +3772,14 @@ module Google
|
|
3696
3772
|
end
|
3697
3773
|
end
|
3698
3774
|
|
3775
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
|
3776
|
+
# @private
|
3777
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3778
|
+
collection :webhook_overrides, as: 'webhookOverrides', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Webhook, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Webhook::Representation
|
3779
|
+
|
3780
|
+
end
|
3781
|
+
end
|
3782
|
+
|
3699
3783
|
class GoogleCloudDialogflowCxV3beta1EventHandler
|
3700
3784
|
# @private
|
3701
3785
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.37.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.37.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Dialogflow API V3beta1
|