google-apis-dialogflow_v3beta1 0.34.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: 4935fb08ff096710e9ac14777851b81e195fde078fb9f58da1217a114fba2abf
4
- data.tar.gz: f696b223956a6c5d12bde8dee5e426f930e9f7d92ed7374d9ffc3221291120f4
3
+ metadata.gz: a6d4a7d410401ba3fa270525227636d32d32d1cbb7f6459ff1ae1cf5a3cabe43
4
+ data.tar.gz: d08e7a83e042d94726140a76113451c9a2779755afb9ebf8ebb5b496de30e934
5
5
  SHA512:
6
- metadata.gz: 2f66f6736c0ed4e12b6758470261c3a639ca3262ea0c995efc7c1811c766e566b9e2cb3bac2bbd1f94dc7d1e8eb2098899f9420495ea49c0121c0fe3db7bec52
7
- data.tar.gz: 0f1a6a849e4855309799f30ca63571131da72e7ad4d1ac534f66358c5ef86d192ac3f3a02644a4c7531a10c1457c11336da98a1850c686ee0b4f6ef7f0efa571
6
+ metadata.gz: abfa43f566cddf48640d6b8c4213c1b5440e92c5430577392c5d529f86da803b99af95fe2b14916857e4c9e14af45751ca4813187c78cd30f6049156e261231e
7
+ data.tar.gz: 4af496acd2b97ff088d967cbfb9b31e612dee2c0b4e655ae71513dca252d9d6f95730ba8cd4dc77f5b1b724cad032ba9f709475f6b7be36f3311e992a46ba877
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.37.0 (2022-05-27)
4
+
5
+ * Regenerated from discovery document revision 20220524
6
+
7
+ ### v0.36.0 (2022-05-05)
8
+
9
+ * Regenerated from discovery document revision 20220502
10
+
11
+ ### v0.35.0 (2022-04-29)
12
+
13
+ * Regenerated from discovery document revision 20220422
14
+
3
15
  ### v0.34.0 (2022-04-14)
4
16
 
5
17
  * Regenerated from discovery document revision 20220411
@@ -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.
@@ -6766,8 +6958,17 @@ module Google
6766
6958
  attr_accessor :current_page
6767
6959
 
6768
6960
  # The free-form diagnostic info. For example, this field could contain webhook
6769
- # call latency. The string keys of the Struct's fields map can change without
6770
- # notice.
6961
+ # call latency. The fields of this data can change without notice, so you should
6962
+ # not write code that depends on its structure. One of the fields is called "
6963
+ # Alternative Matched Intents", which may aid with debugging. The following
6964
+ # describes these intent results: - The list is empty if no intent was matched
6965
+ # to end-user input. - Only intents that are referenced in the currently active
6966
+ # flow are included. - The matched intent is included. - Other intents that
6967
+ # could have matched end-user input, but did not match because they are
6968
+ # referenced by intent routes that are out of [scope](https://cloud.google.com/
6969
+ # dialogflow/cx/docs/concept/handler#scope), are included. - Other intents
6970
+ # referenced by intent routes in scope that matched end-user input, but had a
6971
+ # lower confidence score.
6771
6972
  # Corresponds to the JSON property `diagnosticInfo`
6772
6973
  # @return [Hash<String,Object>]
6773
6974
  attr_accessor :diagnostic_info
@@ -7524,6 +7725,11 @@ module Google
7524
7725
  class GoogleCloudDialogflowCxV3beta1SecuritySettings
7525
7726
  include Google::Apis::Core::Hashable
7526
7727
 
7728
+ # Settings for exporting audio.
7729
+ # Corresponds to the JSON property `audioExportSettings`
7730
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings]
7731
+ attr_accessor :audio_export_settings
7732
+
7527
7733
  # [DLP](https://cloud.google.com/dlp/docs) deidentify template name. Use this
7528
7734
  # template to define de-identification configuration for the content. The `DLP
7529
7735
  # De-identify Templates Reader` role is needed on the Dialogflow service
@@ -7603,6 +7809,7 @@ module Google
7603
7809
 
7604
7810
  # Update properties of this object
7605
7811
  def update!(**args)
7812
+ @audio_export_settings = args[:audio_export_settings] if args.key?(:audio_export_settings)
7606
7813
  @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template)
7607
7814
  @display_name = args[:display_name] if args.key?(:display_name)
7608
7815
  @insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
@@ -7615,6 +7822,46 @@ module Google
7615
7822
  end
7616
7823
  end
7617
7824
 
7825
+ # Settings for exporting audio.
7826
+ class GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
7827
+ include Google::Apis::Core::Hashable
7828
+
7829
+ # Filename pattern for exported audio.
7830
+ # Corresponds to the JSON property `audioExportPattern`
7831
+ # @return [String]
7832
+ attr_accessor :audio_export_pattern
7833
+
7834
+ # File format for exported audio file. Currently only in telephony recordings.
7835
+ # Corresponds to the JSON property `audioFormat`
7836
+ # @return [String]
7837
+ attr_accessor :audio_format
7838
+
7839
+ # Enable audio redaction if it is true.
7840
+ # Corresponds to the JSON property `enableAudioRedaction`
7841
+ # @return [Boolean]
7842
+ attr_accessor :enable_audio_redaction
7843
+ alias_method :enable_audio_redaction?, :enable_audio_redaction
7844
+
7845
+ # Cloud Storage bucket to export audio record to. You need to grant `service-@
7846
+ # gcp-sa-dialogflow.iam.gserviceaccount.com` the `Storage Object Admin` role in
7847
+ # this bucket.
7848
+ # Corresponds to the JSON property `gcsBucket`
7849
+ # @return [String]
7850
+ attr_accessor :gcs_bucket
7851
+
7852
+ def initialize(**args)
7853
+ update!(**args)
7854
+ end
7855
+
7856
+ # Update properties of this object
7857
+ def update!(**args)
7858
+ @audio_export_pattern = args[:audio_export_pattern] if args.key?(:audio_export_pattern)
7859
+ @audio_format = args[:audio_format] if args.key?(:audio_format)
7860
+ @enable_audio_redaction = args[:enable_audio_redaction] if args.key?(:enable_audio_redaction)
7861
+ @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
7862
+ end
7863
+ end
7864
+
7618
7865
  # Settings for exporting conversations to [Insights](https://cloud.google.com/
7619
7866
  # contact-center/insights/docs).
7620
7867
  class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
@@ -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.34.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 = "20220411"
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
 
@@ -1282,6 +1312,12 @@ module Google
1282
1312
  include Google::Apis::Core::JsonObjectSupport
1283
1313
  end
1284
1314
 
1315
+ class GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
1316
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1317
+
1318
+ include Google::Apis::Core::JsonObjectSupport
1319
+ end
1320
+
1285
1321
  class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
1286
1322
  class Representation < Google::Apis::Core::JsonRepresentation; end
1287
1323
 
@@ -2711,6 +2747,8 @@ module Google
2711
2747
  property :update_time, as: 'updateTime'
2712
2748
  collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig::Representation
2713
2749
 
2750
+ property :webhook_config, as: 'webhookConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig::Representation
2751
+
2714
2752
  end
2715
2753
  end
2716
2754
 
@@ -2730,6 +2768,14 @@ module Google
2730
2768
  end
2731
2769
  end
2732
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
+
2733
2779
  class GoogleCloudDialogflowCxV3EventHandler
2734
2780
  # @private
2735
2781
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3265,6 +3311,31 @@ module Google
3265
3311
  end
3266
3312
  end
3267
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
+
3268
3339
  class GoogleCloudDialogflowCxV3WebhookRequest
3269
3340
  # @private
3270
3341
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3348,6 +3419,15 @@ module Google
3348
3419
  end
3349
3420
  end
3350
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
+
3351
3431
  class GoogleCloudDialogflowCxV3beta1AdvancedSettings
3352
3432
  # @private
3353
3433
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3671,6 +3751,8 @@ module Google
3671
3751
  property :update_time, as: 'updateTime'
3672
3752
  collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig::Representation
3673
3753
 
3754
+ property :webhook_config, as: 'webhookConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig::Representation
3755
+
3674
3756
  end
3675
3757
  end
3676
3758
 
@@ -3690,6 +3772,14 @@ module Google
3690
3772
  end
3691
3773
  end
3692
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
+
3693
3783
  class GoogleCloudDialogflowCxV3beta1EventHandler
3694
3784
  # @private
3695
3785
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4642,6 +4732,8 @@ module Google
4642
4732
  class GoogleCloudDialogflowCxV3beta1SecuritySettings
4643
4733
  # @private
4644
4734
  class Representation < Google::Apis::Core::JsonRepresentation
4735
+ property :audio_export_settings, as: 'audioExportSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings::Representation
4736
+
4645
4737
  property :deidentify_template, as: 'deidentifyTemplate'
4646
4738
  property :display_name, as: 'displayName'
4647
4739
  property :insights_export_settings, as: 'insightsExportSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings::Representation
@@ -4655,6 +4747,16 @@ module Google
4655
4747
  end
4656
4748
  end
4657
4749
 
4750
+ class GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
4751
+ # @private
4752
+ class Representation < Google::Apis::Core::JsonRepresentation
4753
+ property :audio_export_pattern, as: 'audioExportPattern'
4754
+ property :audio_format, as: 'audioFormat'
4755
+ property :enable_audio_redaction, as: 'enableAudioRedaction'
4756
+ property :gcs_bucket, as: 'gcsBucket'
4757
+ end
4758
+ end
4759
+
4658
4760
  class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
4659
4761
  # @private
4660
4762
  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.34.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-04-18 00:00:00.000000000 Z
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.34.0
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.5
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