google-apis-dialogflow_v2 0.123.0 → 0.124.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47d7efa1cb4f59d787f82e4662b4e4cb5c2b7c100dca75b6d5c46e2ba3e4bf48
|
|
4
|
+
data.tar.gz: d07d9759d1afdef39593a01fbafe0309097ed7f01c3a3a2bb011f7b5eb88cce3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 801b2d462004f214bed16885c877b4cb775a75b028ac4ad872c3461a4400cefa0c3482d8c15be940e1d21218b565dd353405af387f38093586562ff0122fe5a5
|
|
7
|
+
data.tar.gz: dd8190fd6e4cb9745c8a33fa03e96b05cf9ab525a5fde742f75e5253a81f6fcf0b6478483e43bf1a247faa94f8bbd0f004c79df1458eea11d612377ee7cdb97b
|
data/CHANGELOG.md
CHANGED
|
@@ -8750,6 +8750,11 @@ module Google
|
|
|
8750
8750
|
# @return [String]
|
|
8751
8751
|
attr_accessor :security_settings
|
|
8752
8752
|
|
|
8753
|
+
#
|
|
8754
|
+
# Corresponds to the JSON property `sipConfig`
|
|
8755
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SipConfig]
|
|
8756
|
+
attr_accessor :sip_config
|
|
8757
|
+
|
|
8753
8758
|
#
|
|
8754
8759
|
# Corresponds to the JSON property `sttConfig`
|
|
8755
8760
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SpeechToTextConfig]
|
|
@@ -8788,6 +8793,7 @@ module Google
|
|
|
8788
8793
|
@new_recognition_result_notification_config = args[:new_recognition_result_notification_config] if args.key?(:new_recognition_result_notification_config)
|
|
8789
8794
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
|
8790
8795
|
@security_settings = args[:security_settings] if args.key?(:security_settings)
|
|
8796
|
+
@sip_config = args[:sip_config] if args.key?(:sip_config)
|
|
8791
8797
|
@stt_config = args[:stt_config] if args.key?(:stt_config)
|
|
8792
8798
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
|
8793
8799
|
@tts_config = args[:tts_config] if args.key?(:tts_config)
|
|
@@ -13288,6 +13294,11 @@ module Google
|
|
|
13288
13294
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
13289
13295
|
include Google::Apis::Core::Hashable
|
|
13290
13296
|
|
|
13297
|
+
#
|
|
13298
|
+
# Corresponds to the JSON property `cesDebugInfo`
|
|
13299
|
+
# @return [Hash<String,Object>]
|
|
13300
|
+
attr_accessor :ces_debug_info
|
|
13301
|
+
|
|
13291
13302
|
#
|
|
13292
13303
|
# Corresponds to the JSON property `datastoreResponseReason`
|
|
13293
13304
|
# @return [String]
|
|
@@ -13308,6 +13319,11 @@ module Google
|
|
|
13308
13319
|
# @return [String]
|
|
13309
13320
|
attr_accessor :query_categorization_failure_reason
|
|
13310
13321
|
|
|
13322
|
+
#
|
|
13323
|
+
# Corresponds to the JSON property `queryGenerationDebugInfo`
|
|
13324
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
|
|
13325
|
+
attr_accessor :query_generation_debug_info
|
|
13326
|
+
|
|
13311
13327
|
#
|
|
13312
13328
|
# Corresponds to the JSON property `queryGenerationFailureReason`
|
|
13313
13329
|
# @return [String]
|
|
@@ -13324,10 +13340,12 @@ module Google
|
|
|
13324
13340
|
|
|
13325
13341
|
# Update properties of this object
|
|
13326
13342
|
def update!(**args)
|
|
13343
|
+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
|
|
13327
13344
|
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
|
|
13328
13345
|
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
|
|
13329
13346
|
@knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
|
|
13330
13347
|
@query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
|
|
13348
|
+
@query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
|
|
13331
13349
|
@query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
|
|
13332
13350
|
@service_latency = args[:service_latency] if args.key?(:service_latency)
|
|
13333
13351
|
end
|
|
@@ -13464,6 +13482,37 @@ module Google
|
|
|
13464
13482
|
end
|
|
13465
13483
|
end
|
|
13466
13484
|
|
|
13485
|
+
#
|
|
13486
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
13487
|
+
include Google::Apis::Core::Hashable
|
|
13488
|
+
|
|
13489
|
+
#
|
|
13490
|
+
# Corresponds to the JSON property `candidatesTokenCount`
|
|
13491
|
+
# @return [Fixnum]
|
|
13492
|
+
attr_accessor :candidates_token_count
|
|
13493
|
+
|
|
13494
|
+
#
|
|
13495
|
+
# Corresponds to the JSON property `promptTokenCount`
|
|
13496
|
+
# @return [Fixnum]
|
|
13497
|
+
attr_accessor :prompt_token_count
|
|
13498
|
+
|
|
13499
|
+
#
|
|
13500
|
+
# Corresponds to the JSON property `totalTokenCount`
|
|
13501
|
+
# @return [Fixnum]
|
|
13502
|
+
attr_accessor :total_token_count
|
|
13503
|
+
|
|
13504
|
+
def initialize(**args)
|
|
13505
|
+
update!(**args)
|
|
13506
|
+
end
|
|
13507
|
+
|
|
13508
|
+
# Update properties of this object
|
|
13509
|
+
def update!(**args)
|
|
13510
|
+
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
13511
|
+
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
13512
|
+
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
13513
|
+
end
|
|
13514
|
+
end
|
|
13515
|
+
|
|
13467
13516
|
#
|
|
13468
13517
|
class GoogleCloudDialogflowV2KnowledgeBase
|
|
13469
13518
|
include Google::Apis::Core::Hashable
|
|
@@ -15332,6 +15381,66 @@ module Google
|
|
|
15332
15381
|
end
|
|
15333
15382
|
end
|
|
15334
15383
|
|
|
15384
|
+
#
|
|
15385
|
+
class GoogleCloudDialogflowV2SipConfig
|
|
15386
|
+
include Google::Apis::Core::Hashable
|
|
15387
|
+
|
|
15388
|
+
#
|
|
15389
|
+
# Corresponds to the JSON property `allowVirtualAgentInteraction`
|
|
15390
|
+
# @return [Boolean]
|
|
15391
|
+
attr_accessor :allow_virtual_agent_interaction
|
|
15392
|
+
alias_method :allow_virtual_agent_interaction?, :allow_virtual_agent_interaction
|
|
15393
|
+
|
|
15394
|
+
#
|
|
15395
|
+
# Corresponds to the JSON property `copyInboundCallLegHeaders`
|
|
15396
|
+
# @return [Array<String>]
|
|
15397
|
+
attr_accessor :copy_inbound_call_leg_headers
|
|
15398
|
+
|
|
15399
|
+
#
|
|
15400
|
+
# Corresponds to the JSON property `createConversationOnTheFly`
|
|
15401
|
+
# @return [Boolean]
|
|
15402
|
+
attr_accessor :create_conversation_on_the_fly
|
|
15403
|
+
alias_method :create_conversation_on_the_fly?, :create_conversation_on_the_fly
|
|
15404
|
+
|
|
15405
|
+
#
|
|
15406
|
+
# Corresponds to the JSON property `ignoreReinviteMediaDirection`
|
|
15407
|
+
# @return [Boolean]
|
|
15408
|
+
attr_accessor :ignore_reinvite_media_direction
|
|
15409
|
+
alias_method :ignore_reinvite_media_direction?, :ignore_reinvite_media_direction
|
|
15410
|
+
|
|
15411
|
+
#
|
|
15412
|
+
# Corresponds to the JSON property `inactiveStart`
|
|
15413
|
+
# @return [Boolean]
|
|
15414
|
+
attr_accessor :inactive_start
|
|
15415
|
+
alias_method :inactive_start?, :inactive_start
|
|
15416
|
+
|
|
15417
|
+
#
|
|
15418
|
+
# Corresponds to the JSON property `keepConversationRunning`
|
|
15419
|
+
# @return [Boolean]
|
|
15420
|
+
attr_accessor :keep_conversation_running
|
|
15421
|
+
alias_method :keep_conversation_running?, :keep_conversation_running
|
|
15422
|
+
|
|
15423
|
+
#
|
|
15424
|
+
# Corresponds to the JSON property `maxAudioRecordingDuration`
|
|
15425
|
+
# @return [String]
|
|
15426
|
+
attr_accessor :max_audio_recording_duration
|
|
15427
|
+
|
|
15428
|
+
def initialize(**args)
|
|
15429
|
+
update!(**args)
|
|
15430
|
+
end
|
|
15431
|
+
|
|
15432
|
+
# Update properties of this object
|
|
15433
|
+
def update!(**args)
|
|
15434
|
+
@allow_virtual_agent_interaction = args[:allow_virtual_agent_interaction] if args.key?(:allow_virtual_agent_interaction)
|
|
15435
|
+
@copy_inbound_call_leg_headers = args[:copy_inbound_call_leg_headers] if args.key?(:copy_inbound_call_leg_headers)
|
|
15436
|
+
@create_conversation_on_the_fly = args[:create_conversation_on_the_fly] if args.key?(:create_conversation_on_the_fly)
|
|
15437
|
+
@ignore_reinvite_media_direction = args[:ignore_reinvite_media_direction] if args.key?(:ignore_reinvite_media_direction)
|
|
15438
|
+
@inactive_start = args[:inactive_start] if args.key?(:inactive_start)
|
|
15439
|
+
@keep_conversation_running = args[:keep_conversation_running] if args.key?(:keep_conversation_running)
|
|
15440
|
+
@max_audio_recording_duration = args[:max_audio_recording_duration] if args.key?(:max_audio_recording_duration)
|
|
15441
|
+
end
|
|
15442
|
+
end
|
|
15443
|
+
|
|
15335
15444
|
#
|
|
15336
15445
|
class GoogleCloudDialogflowV2SipTrunk
|
|
15337
15446
|
include Google::Apis::Core::Hashable
|
|
@@ -20714,6 +20823,11 @@ module Google
|
|
|
20714
20823
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
20715
20824
|
include Google::Apis::Core::Hashable
|
|
20716
20825
|
|
|
20826
|
+
#
|
|
20827
|
+
# Corresponds to the JSON property `cesDebugInfo`
|
|
20828
|
+
# @return [Hash<String,Object>]
|
|
20829
|
+
attr_accessor :ces_debug_info
|
|
20830
|
+
|
|
20717
20831
|
#
|
|
20718
20832
|
# Corresponds to the JSON property `datastoreResponseReason`
|
|
20719
20833
|
# @return [String]
|
|
@@ -20734,6 +20848,11 @@ module Google
|
|
|
20734
20848
|
# @return [String]
|
|
20735
20849
|
attr_accessor :query_categorization_failure_reason
|
|
20736
20850
|
|
|
20851
|
+
#
|
|
20852
|
+
# Corresponds to the JSON property `queryGenerationDebugInfo`
|
|
20853
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
|
|
20854
|
+
attr_accessor :query_generation_debug_info
|
|
20855
|
+
|
|
20737
20856
|
#
|
|
20738
20857
|
# Corresponds to the JSON property `queryGenerationFailureReason`
|
|
20739
20858
|
# @return [String]
|
|
@@ -20750,10 +20869,12 @@ module Google
|
|
|
20750
20869
|
|
|
20751
20870
|
# Update properties of this object
|
|
20752
20871
|
def update!(**args)
|
|
20872
|
+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
|
|
20753
20873
|
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
|
|
20754
20874
|
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
|
|
20755
20875
|
@knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
|
|
20756
20876
|
@query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
|
|
20877
|
+
@query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
|
|
20757
20878
|
@query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
|
|
20758
20879
|
@service_latency = args[:service_latency] if args.key?(:service_latency)
|
|
20759
20880
|
end
|
|
@@ -20890,6 +21011,37 @@ module Google
|
|
|
20890
21011
|
end
|
|
20891
21012
|
end
|
|
20892
21013
|
|
|
21014
|
+
#
|
|
21015
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
21016
|
+
include Google::Apis::Core::Hashable
|
|
21017
|
+
|
|
21018
|
+
#
|
|
21019
|
+
# Corresponds to the JSON property `candidatesTokenCount`
|
|
21020
|
+
# @return [Fixnum]
|
|
21021
|
+
attr_accessor :candidates_token_count
|
|
21022
|
+
|
|
21023
|
+
#
|
|
21024
|
+
# Corresponds to the JSON property `promptTokenCount`
|
|
21025
|
+
# @return [Fixnum]
|
|
21026
|
+
attr_accessor :prompt_token_count
|
|
21027
|
+
|
|
21028
|
+
#
|
|
21029
|
+
# Corresponds to the JSON property `totalTokenCount`
|
|
21030
|
+
# @return [Fixnum]
|
|
21031
|
+
attr_accessor :total_token_count
|
|
21032
|
+
|
|
21033
|
+
def initialize(**args)
|
|
21034
|
+
update!(**args)
|
|
21035
|
+
end
|
|
21036
|
+
|
|
21037
|
+
# Update properties of this object
|
|
21038
|
+
def update!(**args)
|
|
21039
|
+
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
21040
|
+
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
21041
|
+
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
21042
|
+
end
|
|
21043
|
+
end
|
|
21044
|
+
|
|
20893
21045
|
#
|
|
20894
21046
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
|
20895
21047
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV2
|
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.124.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260518"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2470,6 +2470,12 @@ module Google
|
|
|
2470
2470
|
include Google::Apis::Core::JsonObjectSupport
|
|
2471
2471
|
end
|
|
2472
2472
|
|
|
2473
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
2474
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2475
|
+
|
|
2476
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2477
|
+
end
|
|
2478
|
+
|
|
2473
2479
|
class GoogleCloudDialogflowV2KnowledgeBase
|
|
2474
2480
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2475
2481
|
|
|
@@ -2830,6 +2836,12 @@ module Google
|
|
|
2830
2836
|
include Google::Apis::Core::JsonObjectSupport
|
|
2831
2837
|
end
|
|
2832
2838
|
|
|
2839
|
+
class GoogleCloudDialogflowV2SipConfig
|
|
2840
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2841
|
+
|
|
2842
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2843
|
+
end
|
|
2844
|
+
|
|
2833
2845
|
class GoogleCloudDialogflowV2SipTrunk
|
|
2834
2846
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2835
2847
|
|
|
@@ -3844,6 +3856,12 @@ module Google
|
|
|
3844
3856
|
include Google::Apis::Core::JsonObjectSupport
|
|
3845
3857
|
end
|
|
3846
3858
|
|
|
3859
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
3860
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3861
|
+
|
|
3862
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3863
|
+
end
|
|
3864
|
+
|
|
3847
3865
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
|
3848
3866
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3849
3867
|
|
|
@@ -6850,6 +6868,8 @@ module Google
|
|
|
6850
6868
|
property :notification_config, as: 'notificationConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2NotificationConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2NotificationConfig::Representation
|
|
6851
6869
|
|
|
6852
6870
|
property :security_settings, as: 'securitySettings'
|
|
6871
|
+
property :sip_config, as: 'sipConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SipConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SipConfig::Representation
|
|
6872
|
+
|
|
6853
6873
|
property :stt_config, as: 'sttConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SpeechToTextConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SpeechToTextConfig::Representation
|
|
6854
6874
|
|
|
6855
6875
|
property :time_zone, as: 'timeZone'
|
|
@@ -8275,12 +8295,15 @@ module Google
|
|
|
8275
8295
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
8276
8296
|
# @private
|
|
8277
8297
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8298
|
+
hash :ces_debug_info, as: 'cesDebugInfo'
|
|
8278
8299
|
property :datastore_response_reason, as: 'datastoreResponseReason'
|
|
8279
8300
|
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo::Representation
|
|
8280
8301
|
|
|
8281
8302
|
property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
|
|
8282
8303
|
|
|
8283
8304
|
property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
|
|
8305
|
+
property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
|
|
8306
|
+
|
|
8284
8307
|
property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
|
|
8285
8308
|
property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ServiceLatency, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ServiceLatency::Representation
|
|
8286
8309
|
|
|
@@ -8310,6 +8333,15 @@ module Google
|
|
|
8310
8333
|
end
|
|
8311
8334
|
end
|
|
8312
8335
|
|
|
8336
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
8337
|
+
# @private
|
|
8338
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8339
|
+
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
8340
|
+
property :prompt_token_count, as: 'promptTokenCount'
|
|
8341
|
+
property :total_token_count, as: 'totalTokenCount'
|
|
8342
|
+
end
|
|
8343
|
+
end
|
|
8344
|
+
|
|
8313
8345
|
class GoogleCloudDialogflowV2KnowledgeBase
|
|
8314
8346
|
# @private
|
|
8315
8347
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8906,6 +8938,19 @@ module Google
|
|
|
8906
8938
|
end
|
|
8907
8939
|
end
|
|
8908
8940
|
|
|
8941
|
+
class GoogleCloudDialogflowV2SipConfig
|
|
8942
|
+
# @private
|
|
8943
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8944
|
+
property :allow_virtual_agent_interaction, as: 'allowVirtualAgentInteraction'
|
|
8945
|
+
collection :copy_inbound_call_leg_headers, as: 'copyInboundCallLegHeaders'
|
|
8946
|
+
property :create_conversation_on_the_fly, as: 'createConversationOnTheFly'
|
|
8947
|
+
property :ignore_reinvite_media_direction, as: 'ignoreReinviteMediaDirection'
|
|
8948
|
+
property :inactive_start, as: 'inactiveStart'
|
|
8949
|
+
property :keep_conversation_running, as: 'keepConversationRunning'
|
|
8950
|
+
property :max_audio_recording_duration, as: 'maxAudioRecordingDuration'
|
|
8951
|
+
end
|
|
8952
|
+
end
|
|
8953
|
+
|
|
8909
8954
|
class GoogleCloudDialogflowV2SipTrunk
|
|
8910
8955
|
# @private
|
|
8911
8956
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10607,12 +10652,15 @@ module Google
|
|
|
10607
10652
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
10608
10653
|
# @private
|
|
10609
10654
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10655
|
+
hash :ces_debug_info, as: 'cesDebugInfo'
|
|
10610
10656
|
property :datastore_response_reason, as: 'datastoreResponseReason'
|
|
10611
10657
|
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo::Representation
|
|
10612
10658
|
|
|
10613
10659
|
property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
|
|
10614
10660
|
|
|
10615
10661
|
property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
|
|
10662
|
+
property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
|
|
10663
|
+
|
|
10616
10664
|
property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
|
|
10617
10665
|
property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1ServiceLatency, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1ServiceLatency::Representation
|
|
10618
10666
|
|
|
@@ -10642,6 +10690,15 @@ module Google
|
|
|
10642
10690
|
end
|
|
10643
10691
|
end
|
|
10644
10692
|
|
|
10693
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
10694
|
+
# @private
|
|
10695
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10696
|
+
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
10697
|
+
property :prompt_token_count, as: 'promptTokenCount'
|
|
10698
|
+
property :total_token_count, as: 'totalTokenCount'
|
|
10699
|
+
end
|
|
10700
|
+
end
|
|
10701
|
+
|
|
10645
10702
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
|
10646
10703
|
# @private
|
|
10647
10704
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.124.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.124.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|