google-apis-dialogflow_v2beta1 0.35.0 → 0.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7b088310f5597ee38d53b0834ca3a9d1249d842e21735f99c259bdad37102dc
4
- data.tar.gz: 585ccbee5177d678286bcae3b26ee06668ed118e4bda63cf5a1299074cdd633e
3
+ metadata.gz: 34fc3018b5767dc8618b9508d11370f5efdb641532bbacb6888e36be556c711c
4
+ data.tar.gz: 37da5e10ee6e8f165a23e9d370e582a0e3e25ca85a6291a936b2b6e389e43a67
5
5
  SHA512:
6
- metadata.gz: f88156ef473c2456cb2af212ddea762aca44e306b19c336c5084ce54cc5412732e8d2f3386dd0e9455d9d0ad686b28644129cf90893742931d7c5b16b12383ee
7
- data.tar.gz: 20a7694dbf2f3510f1ca319ae28547b28daeab04f86b128b8a2ad207bbf519c3435cd07df2c0638f581e194a956de8c042a4a6b7ab2a0d6dc3bbee4a59db27a7
6
+ metadata.gz: 401b2b59ab686314199a65c7f13909bbf81324c13eaf5ec1efba71fc9824f3166bf6dbc7308bd07c9cd63eaa3c5e0e37ad281a94d1a179ae6d05e971a2418831
7
+ data.tar.gz: 0d84d88eac8a6b74589bcb3be6a6c1ea398b6aca1ddfc8cb076d0f6dc807953ec4b6ae1ecf23cb1936a41442ef90f622cb275b79c128cfc01e2919f5e192b18a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.36.0 (2022-05-27)
4
+
5
+ * Regenerated from discovery document revision 20220524
6
+
3
7
  ### v0.35.0 (2022-05-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20220502
@@ -456,6 +456,11 @@ module Google
456
456
  # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig>]
457
457
  attr_accessor :version_configs
458
458
 
459
+ # Configuration for webhooks.
460
+ # Corresponds to the JSON property `webhookConfig`
461
+ # @return [Google::Apis::DialogflowV2beta1::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::DialogflowV2beta1::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::DialogflowV2beta1::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::DialogflowV2beta1::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::DialogflowV2beta1::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
  # Represents the natural speech audio to be processed.
2787
2952
  class GoogleCloudDialogflowCxV3beta1AudioInput
2788
2953
  include Google::Apis::Core::Hashable
@@ -3217,6 +3382,11 @@ module Google
3217
3382
  # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig>]
3218
3383
  attr_accessor :version_configs
3219
3384
 
3385
+ # Configuration for webhooks.
3386
+ # Corresponds to the JSON property `webhookConfig`
3387
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig]
3388
+ attr_accessor :webhook_config
3389
+
3220
3390
  def initialize(**args)
3221
3391
  update!(**args)
3222
3392
  end
@@ -3229,6 +3399,7 @@ module Google
3229
3399
  @test_cases_config = args[:test_cases_config] if args.key?(:test_cases_config)
3230
3400
  @update_time = args[:update_time] if args.key?(:update_time)
3231
3401
  @version_configs = args[:version_configs] if args.key?(:version_configs)
3402
+ @webhook_config = args[:webhook_config] if args.key?(:webhook_config)
3232
3403
  end
3233
3404
  end
3234
3405
 
@@ -3287,6 +3458,27 @@ module Google
3287
3458
  end
3288
3459
  end
3289
3460
 
3461
+ # Configuration for webhooks.
3462
+ class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
3463
+ include Google::Apis::Core::Hashable
3464
+
3465
+ # The list of webhooks to override for the agent environment. The webhook must
3466
+ # exist in the agent. You can override fields in `generic_web_service` and `
3467
+ # service_directory`.
3468
+ # Corresponds to the JSON property `webhookOverrides`
3469
+ # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Webhook>]
3470
+ attr_accessor :webhook_overrides
3471
+
3472
+ def initialize(**args)
3473
+ update!(**args)
3474
+ end
3475
+
3476
+ # Update properties of this object
3477
+ def update!(**args)
3478
+ @webhook_overrides = args[:webhook_overrides] if args.key?(:webhook_overrides)
3479
+ end
3480
+ end
3481
+
3290
3482
  # An event handler specifies an event that can be handled during a session. When
3291
3483
  # the specified event happens, the following actions are taken in order: * If
3292
3484
  # there is a `trigger_fulfillment` associated with the event, it will be called.
@@ -5254,6 +5446,115 @@ module Google
5254
5446
  end
5255
5447
  end
5256
5448
 
5449
+ # Webhooks host the developer's business logic. During a session, webhooks allow
5450
+ # the developer to use the data extracted by Dialogflow's natural language
5451
+ # processing to generate dynamic responses, validate collected data, or trigger
5452
+ # actions on the backend.
5453
+ class GoogleCloudDialogflowCxV3beta1Webhook
5454
+ include Google::Apis::Core::Hashable
5455
+
5456
+ # Indicates whether the webhook is disabled.
5457
+ # Corresponds to the JSON property `disabled`
5458
+ # @return [Boolean]
5459
+ attr_accessor :disabled
5460
+ alias_method :disabled?, :disabled
5461
+
5462
+ # Required. The human-readable name of the webhook, unique within the agent.
5463
+ # Corresponds to the JSON property `displayName`
5464
+ # @return [String]
5465
+ attr_accessor :display_name
5466
+
5467
+ # Represents configuration for a generic web service.
5468
+ # Corresponds to the JSON property `genericWebService`
5469
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService]
5470
+ attr_accessor :generic_web_service
5471
+
5472
+ # The unique identifier of the webhook. Required for the Webhooks.UpdateWebhook
5473
+ # method. Webhooks.CreateWebhook populates the name automatically. Format: `
5474
+ # projects//locations//agents//webhooks/`.
5475
+ # Corresponds to the JSON property `name`
5476
+ # @return [String]
5477
+ attr_accessor :name
5478
+
5479
+ # Represents configuration for a [Service Directory](https://cloud.google.com/
5480
+ # service-directory) service.
5481
+ # Corresponds to the JSON property `serviceDirectory`
5482
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig]
5483
+ attr_accessor :service_directory
5484
+
5485
+ # Webhook execution timeout. Execution is considered failed if Dialogflow doesn'
5486
+ # t receive a response from webhook at the end of the timeout period. Defaults
5487
+ # to 5 seconds, maximum allowed timeout is 30 seconds.
5488
+ # Corresponds to the JSON property `timeout`
5489
+ # @return [String]
5490
+ attr_accessor :timeout
5491
+
5492
+ def initialize(**args)
5493
+ update!(**args)
5494
+ end
5495
+
5496
+ # Update properties of this object
5497
+ def update!(**args)
5498
+ @disabled = args[:disabled] if args.key?(:disabled)
5499
+ @display_name = args[:display_name] if args.key?(:display_name)
5500
+ @generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service)
5501
+ @name = args[:name] if args.key?(:name)
5502
+ @service_directory = args[:service_directory] if args.key?(:service_directory)
5503
+ @timeout = args[:timeout] if args.key?(:timeout)
5504
+ end
5505
+ end
5506
+
5507
+ # Represents configuration for a generic web service.
5508
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
5509
+ include Google::Apis::Core::Hashable
5510
+
5511
+ # Optional. Specifies a list of allowed custom CA certificates (in DER format)
5512
+ # for HTTPS verification. This overrides the default SSL trust store. If this is
5513
+ # empty or unspecified, Dialogflow will use Google's default trust store to
5514
+ # verify certificates. N.B. Make sure the HTTPS server certificates are signed
5515
+ # with "subject alt name". For instance a certificate can be self-signed using
5516
+ # the following command, ``` openssl x509 -req -days 200 -in example.com.csr \ -
5517
+ # signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
5518
+ # nsubjectAltName='DNS:www.example.com'") ```
5519
+ # Corresponds to the JSON property `allowedCaCerts`
5520
+ # @return [Array<String>]
5521
+ attr_accessor :allowed_ca_certs
5522
+
5523
+ # The password for HTTP Basic authentication.
5524
+ # Corresponds to the JSON property `password`
5525
+ # @return [String]
5526
+ attr_accessor :password
5527
+
5528
+ # The HTTP request headers to send together with webhook requests.
5529
+ # Corresponds to the JSON property `requestHeaders`
5530
+ # @return [Hash<String,String>]
5531
+ attr_accessor :request_headers
5532
+
5533
+ # Required. The webhook URI for receiving POST requests. It must use https
5534
+ # protocol.
5535
+ # Corresponds to the JSON property `uri`
5536
+ # @return [String]
5537
+ attr_accessor :uri
5538
+
5539
+ # The user name for HTTP Basic authentication.
5540
+ # Corresponds to the JSON property `username`
5541
+ # @return [String]
5542
+ attr_accessor :username
5543
+
5544
+ def initialize(**args)
5545
+ update!(**args)
5546
+ end
5547
+
5548
+ # Update properties of this object
5549
+ def update!(**args)
5550
+ @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
5551
+ @password = args[:password] if args.key?(:password)
5552
+ @request_headers = args[:request_headers] if args.key?(:request_headers)
5553
+ @uri = args[:uri] if args.key?(:uri)
5554
+ @username = args[:username] if args.key?(:username)
5555
+ end
5556
+ end
5557
+
5257
5558
  # The request message for a webhook call. The request is sent as a JSON object
5258
5559
  # and the field names will be presented in camel cases.
5259
5560
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
@@ -5544,6 +5845,35 @@ module Google
5544
5845
  end
5545
5846
  end
5546
5847
 
5848
+ # Represents configuration for a [Service Directory](https://cloud.google.com/
5849
+ # service-directory) service.
5850
+ class GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
5851
+ include Google::Apis::Core::Hashable
5852
+
5853
+ # Represents configuration for a generic web service.
5854
+ # Corresponds to the JSON property `genericWebService`
5855
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService]
5856
+ attr_accessor :generic_web_service
5857
+
5858
+ # Required. The name of [Service Directory](https://cloud.google.com/service-
5859
+ # directory) service. Format: `projects//locations//namespaces//services/`. `
5860
+ # Location ID` of the service directory must be the same as the location of the
5861
+ # agent.
5862
+ # Corresponds to the JSON property `service`
5863
+ # @return [String]
5864
+ attr_accessor :service
5865
+
5866
+ def initialize(**args)
5867
+ update!(**args)
5868
+ end
5869
+
5870
+ # Update properties of this object
5871
+ def update!(**args)
5872
+ @generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service)
5873
+ @service = args[:service] if args.key?(:service)
5874
+ end
5875
+ end
5876
+
5547
5877
  # Represents a part of a message possibly annotated with an entity. The part can
5548
5878
  # be an entity or purely a part of the message between two entities or message
5549
5879
  # start/end.
@@ -10902,7 +11232,7 @@ module Google
10902
11232
  end
10903
11233
 
10904
11234
  # Custom conversation models used in agent assist feature. Supported feature:
10905
- # ARTICLE_SUGGESTION, SMART_COMPOSE, SMART_REPLY.
11235
+ # ARTICLE_SUGGESTION, SMART_COMPOSE, SMART_REPLY, CONVERSATION_SUMMARIZATION.
10906
11236
  class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationModelConfig
10907
11237
  include Google::Apis::Core::Hashable
10908
11238
 
@@ -11022,7 +11352,7 @@ module Google
11022
11352
  include Google::Apis::Core::Hashable
11023
11353
 
11024
11354
  # Custom conversation models used in agent assist feature. Supported feature:
11025
- # ARTICLE_SUGGESTION, SMART_COMPOSE, SMART_REPLY.
11355
+ # ARTICLE_SUGGESTION, SMART_COMPOSE, SMART_REPLY, CONVERSATION_SUMMARIZATION.
11026
11356
  # Corresponds to the JSON property `conversationModelConfig`
11027
11357
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationModelConfig]
11028
11358
  attr_accessor :conversation_model_config
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.36.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 = "20220502"
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 GoogleCloudDialogflowCxV3beta1AudioInput
500
524
  class Representation < Google::Apis::Core::JsonRepresentation; end
501
525
 
@@ -592,6 +616,12 @@ module Google
592
616
  include Google::Apis::Core::JsonObjectSupport
593
617
  end
594
618
 
619
+ class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
620
+ class Representation < Google::Apis::Core::JsonRepresentation; end
621
+
622
+ include Google::Apis::Core::JsonObjectSupport
623
+ end
624
+
595
625
  class GoogleCloudDialogflowCxV3beta1EventHandler
596
626
  class Representation < Google::Apis::Core::JsonRepresentation; end
597
627
 
@@ -928,6 +958,18 @@ module Google
928
958
  include Google::Apis::Core::JsonObjectSupport
929
959
  end
930
960
 
961
+ class GoogleCloudDialogflowCxV3beta1Webhook
962
+ class Representation < Google::Apis::Core::JsonRepresentation; end
963
+
964
+ include Google::Apis::Core::JsonObjectSupport
965
+ end
966
+
967
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
968
+ class Representation < Google::Apis::Core::JsonRepresentation; end
969
+
970
+ include Google::Apis::Core::JsonObjectSupport
971
+ end
972
+
931
973
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
932
974
  class Representation < Google::Apis::Core::JsonRepresentation; end
933
975
 
@@ -970,6 +1012,12 @@ module Google
970
1012
  include Google::Apis::Core::JsonObjectSupport
971
1013
  end
972
1014
 
1015
+ class GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
1016
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1017
+
1018
+ include Google::Apis::Core::JsonObjectSupport
1019
+ end
1020
+
973
1021
  class GoogleCloudDialogflowV2AnnotatedMessagePart
974
1022
  class Representation < Google::Apis::Core::JsonRepresentation; end
975
1023
 
@@ -2837,6 +2885,8 @@ module Google
2837
2885
  property :update_time, as: 'updateTime'
2838
2886
  collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig::Representation
2839
2887
 
2888
+ property :webhook_config, as: 'webhookConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig::Representation
2889
+
2840
2890
  end
2841
2891
  end
2842
2892
 
@@ -2856,6 +2906,14 @@ module Google
2856
2906
  end
2857
2907
  end
2858
2908
 
2909
+ class GoogleCloudDialogflowCxV3EnvironmentWebhookConfig
2910
+ # @private
2911
+ class Representation < Google::Apis::Core::JsonRepresentation
2912
+ collection :webhook_overrides, as: 'webhookOverrides', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Webhook, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Webhook::Representation
2913
+
2914
+ end
2915
+ end
2916
+
2859
2917
  class GoogleCloudDialogflowCxV3EventHandler
2860
2918
  # @private
2861
2919
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3391,6 +3449,31 @@ module Google
3391
3449
  end
3392
3450
  end
3393
3451
 
3452
+ class GoogleCloudDialogflowCxV3Webhook
3453
+ # @private
3454
+ class Representation < Google::Apis::Core::JsonRepresentation
3455
+ property :disabled, as: 'disabled'
3456
+ property :display_name, as: 'displayName'
3457
+ property :generic_web_service, as: 'genericWebService', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService::Representation
3458
+
3459
+ property :name, as: 'name'
3460
+ property :service_directory, as: 'serviceDirectory', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig::Representation
3461
+
3462
+ property :timeout, as: 'timeout'
3463
+ end
3464
+ end
3465
+
3466
+ class GoogleCloudDialogflowCxV3WebhookGenericWebService
3467
+ # @private
3468
+ class Representation < Google::Apis::Core::JsonRepresentation
3469
+ collection :allowed_ca_certs, as: 'allowedCaCerts'
3470
+ property :password, as: 'password'
3471
+ hash :request_headers, as: 'requestHeaders'
3472
+ property :uri, as: 'uri'
3473
+ property :username, as: 'username'
3474
+ end
3475
+ end
3476
+
3394
3477
  class GoogleCloudDialogflowCxV3WebhookRequest
3395
3478
  # @private
3396
3479
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3474,6 +3557,15 @@ module Google
3474
3557
  end
3475
3558
  end
3476
3559
 
3560
+ class GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig
3561
+ # @private
3562
+ class Representation < Google::Apis::Core::JsonRepresentation
3563
+ property :generic_web_service, as: 'genericWebService', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookGenericWebService::Representation
3564
+
3565
+ property :service, as: 'service'
3566
+ end
3567
+ end
3568
+
3477
3569
  class GoogleCloudDialogflowCxV3beta1AudioInput
3478
3570
  # @private
3479
3571
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3607,6 +3699,8 @@ module Google
3607
3699
  property :update_time, as: 'updateTime'
3608
3700
  collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig::Representation
3609
3701
 
3702
+ property :webhook_config, as: 'webhookConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig::Representation
3703
+
3610
3704
  end
3611
3705
  end
3612
3706
 
@@ -3626,6 +3720,14 @@ module Google
3626
3720
  end
3627
3721
  end
3628
3722
 
3723
+ class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
3724
+ # @private
3725
+ class Representation < Google::Apis::Core::JsonRepresentation
3726
+ collection :webhook_overrides, as: 'webhookOverrides', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Webhook, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Webhook::Representation
3727
+
3728
+ end
3729
+ end
3730
+
3629
3731
  class GoogleCloudDialogflowCxV3beta1EventHandler
3630
3732
  # @private
3631
3733
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4161,6 +4263,31 @@ module Google
4161
4263
  end
4162
4264
  end
4163
4265
 
4266
+ class GoogleCloudDialogflowCxV3beta1Webhook
4267
+ # @private
4268
+ class Representation < Google::Apis::Core::JsonRepresentation
4269
+ property :disabled, as: 'disabled'
4270
+ property :display_name, as: 'displayName'
4271
+ property :generic_web_service, as: 'genericWebService', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService::Representation
4272
+
4273
+ property :name, as: 'name'
4274
+ property :service_directory, as: 'serviceDirectory', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig::Representation
4275
+
4276
+ property :timeout, as: 'timeout'
4277
+ end
4278
+ end
4279
+
4280
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
4281
+ # @private
4282
+ class Representation < Google::Apis::Core::JsonRepresentation
4283
+ collection :allowed_ca_certs, as: 'allowedCaCerts'
4284
+ property :password, as: 'password'
4285
+ hash :request_headers, as: 'requestHeaders'
4286
+ property :uri, as: 'uri'
4287
+ property :username, as: 'username'
4288
+ end
4289
+ end
4290
+
4164
4291
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
4165
4292
  # @private
4166
4293
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4244,6 +4371,15 @@ module Google
4244
4371
  end
4245
4372
  end
4246
4373
 
4374
+ class GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
4375
+ # @private
4376
+ class Representation < Google::Apis::Core::JsonRepresentation
4377
+ property :generic_web_service, as: 'genericWebService', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService::Representation
4378
+
4379
+ property :service, as: 'service'
4380
+ end
4381
+ end
4382
+
4247
4383
  class GoogleCloudDialogflowV2AnnotatedMessagePart
4248
4384
  # @private
4249
4385
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.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-09 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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.36.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
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 V2beta1