google-apis-dialogflow_v2beta1 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: 2cd1083010b0676b847e741194a932fdd64c36de7b6870c199b96b43fcc0120c
|
|
4
|
+
data.tar.gz: 535e13bbb5495cc734feee766fb438036b98794a015880f679ff77215eed5555
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e303febcad197655e97c476d7c9677f1994a82fe64a8f0b6369fe758df86eb1076e2907702d2507d105154d8c813c0caf050dd101297cc60f1a977fab4f22fb
|
|
7
|
+
data.tar.gz: c5a6f62cd2f87ca0c2f42b5e97098b181c5740b7f789665aa77b786031d7cd2e7cde2b707bf4300dcece6597a65b7b60baf0430e81267b24da194eefa371f8c9
|
data/CHANGELOG.md
CHANGED
|
@@ -9497,6 +9497,11 @@ module Google
|
|
|
9497
9497
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
9498
9498
|
include Google::Apis::Core::Hashable
|
|
9499
9499
|
|
|
9500
|
+
#
|
|
9501
|
+
# Corresponds to the JSON property `cesDebugInfo`
|
|
9502
|
+
# @return [Hash<String,Object>]
|
|
9503
|
+
attr_accessor :ces_debug_info
|
|
9504
|
+
|
|
9500
9505
|
#
|
|
9501
9506
|
# Corresponds to the JSON property `datastoreResponseReason`
|
|
9502
9507
|
# @return [String]
|
|
@@ -9517,6 +9522,11 @@ module Google
|
|
|
9517
9522
|
# @return [String]
|
|
9518
9523
|
attr_accessor :query_categorization_failure_reason
|
|
9519
9524
|
|
|
9525
|
+
#
|
|
9526
|
+
# Corresponds to the JSON property `queryGenerationDebugInfo`
|
|
9527
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
|
|
9528
|
+
attr_accessor :query_generation_debug_info
|
|
9529
|
+
|
|
9520
9530
|
#
|
|
9521
9531
|
# Corresponds to the JSON property `queryGenerationFailureReason`
|
|
9522
9532
|
# @return [String]
|
|
@@ -9533,10 +9543,12 @@ module Google
|
|
|
9533
9543
|
|
|
9534
9544
|
# Update properties of this object
|
|
9535
9545
|
def update!(**args)
|
|
9546
|
+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
|
|
9536
9547
|
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
|
|
9537
9548
|
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
|
|
9538
9549
|
@knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
|
|
9539
9550
|
@query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
|
|
9551
|
+
@query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
|
|
9540
9552
|
@query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
|
|
9541
9553
|
@service_latency = args[:service_latency] if args.key?(:service_latency)
|
|
9542
9554
|
end
|
|
@@ -9673,6 +9685,37 @@ module Google
|
|
|
9673
9685
|
end
|
|
9674
9686
|
end
|
|
9675
9687
|
|
|
9688
|
+
#
|
|
9689
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
9690
|
+
include Google::Apis::Core::Hashable
|
|
9691
|
+
|
|
9692
|
+
#
|
|
9693
|
+
# Corresponds to the JSON property `candidatesTokenCount`
|
|
9694
|
+
# @return [Fixnum]
|
|
9695
|
+
attr_accessor :candidates_token_count
|
|
9696
|
+
|
|
9697
|
+
#
|
|
9698
|
+
# Corresponds to the JSON property `promptTokenCount`
|
|
9699
|
+
# @return [Fixnum]
|
|
9700
|
+
attr_accessor :prompt_token_count
|
|
9701
|
+
|
|
9702
|
+
#
|
|
9703
|
+
# Corresponds to the JSON property `totalTokenCount`
|
|
9704
|
+
# @return [Fixnum]
|
|
9705
|
+
attr_accessor :total_token_count
|
|
9706
|
+
|
|
9707
|
+
def initialize(**args)
|
|
9708
|
+
update!(**args)
|
|
9709
|
+
end
|
|
9710
|
+
|
|
9711
|
+
# Update properties of this object
|
|
9712
|
+
def update!(**args)
|
|
9713
|
+
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
9714
|
+
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
9715
|
+
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
9716
|
+
end
|
|
9717
|
+
end
|
|
9718
|
+
|
|
9676
9719
|
#
|
|
9677
9720
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
|
9678
9721
|
include Google::Apis::Core::Hashable
|
|
@@ -12697,6 +12740,11 @@ module Google
|
|
|
12697
12740
|
# @return [String]
|
|
12698
12741
|
attr_accessor :security_settings
|
|
12699
12742
|
|
|
12743
|
+
#
|
|
12744
|
+
# Corresponds to the JSON property `sipConfig`
|
|
12745
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SipConfig]
|
|
12746
|
+
attr_accessor :sip_config
|
|
12747
|
+
|
|
12700
12748
|
#
|
|
12701
12749
|
# Corresponds to the JSON property `sttConfig`
|
|
12702
12750
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SpeechToTextConfig]
|
|
@@ -12741,6 +12789,7 @@ module Google
|
|
|
12741
12789
|
@new_recognition_result_notification_config = args[:new_recognition_result_notification_config] if args.key?(:new_recognition_result_notification_config)
|
|
12742
12790
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
|
12743
12791
|
@security_settings = args[:security_settings] if args.key?(:security_settings)
|
|
12792
|
+
@sip_config = args[:sip_config] if args.key?(:sip_config)
|
|
12744
12793
|
@stt_config = args[:stt_config] if args.key?(:stt_config)
|
|
12745
12794
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
|
12746
12795
|
@tts_config = args[:tts_config] if args.key?(:tts_config)
|
|
@@ -17369,6 +17418,11 @@ module Google
|
|
|
17369
17418
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
17370
17419
|
include Google::Apis::Core::Hashable
|
|
17371
17420
|
|
|
17421
|
+
#
|
|
17422
|
+
# Corresponds to the JSON property `cesDebugInfo`
|
|
17423
|
+
# @return [Hash<String,Object>]
|
|
17424
|
+
attr_accessor :ces_debug_info
|
|
17425
|
+
|
|
17372
17426
|
#
|
|
17373
17427
|
# Corresponds to the JSON property `datastoreResponseReason`
|
|
17374
17428
|
# @return [String]
|
|
@@ -17389,6 +17443,11 @@ module Google
|
|
|
17389
17443
|
# @return [String]
|
|
17390
17444
|
attr_accessor :query_categorization_failure_reason
|
|
17391
17445
|
|
|
17446
|
+
#
|
|
17447
|
+
# Corresponds to the JSON property `queryGenerationDebugInfo`
|
|
17448
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
|
|
17449
|
+
attr_accessor :query_generation_debug_info
|
|
17450
|
+
|
|
17392
17451
|
#
|
|
17393
17452
|
# Corresponds to the JSON property `queryGenerationFailureReason`
|
|
17394
17453
|
# @return [String]
|
|
@@ -17405,10 +17464,12 @@ module Google
|
|
|
17405
17464
|
|
|
17406
17465
|
# Update properties of this object
|
|
17407
17466
|
def update!(**args)
|
|
17467
|
+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
|
|
17408
17468
|
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
|
|
17409
17469
|
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
|
|
17410
17470
|
@knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
|
|
17411
17471
|
@query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
|
|
17472
|
+
@query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
|
|
17412
17473
|
@query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
|
|
17413
17474
|
@service_latency = args[:service_latency] if args.key?(:service_latency)
|
|
17414
17475
|
end
|
|
@@ -17545,6 +17606,37 @@ module Google
|
|
|
17545
17606
|
end
|
|
17546
17607
|
end
|
|
17547
17608
|
|
|
17609
|
+
#
|
|
17610
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
17611
|
+
include Google::Apis::Core::Hashable
|
|
17612
|
+
|
|
17613
|
+
#
|
|
17614
|
+
# Corresponds to the JSON property `candidatesTokenCount`
|
|
17615
|
+
# @return [Fixnum]
|
|
17616
|
+
attr_accessor :candidates_token_count
|
|
17617
|
+
|
|
17618
|
+
#
|
|
17619
|
+
# Corresponds to the JSON property `promptTokenCount`
|
|
17620
|
+
# @return [Fixnum]
|
|
17621
|
+
attr_accessor :prompt_token_count
|
|
17622
|
+
|
|
17623
|
+
#
|
|
17624
|
+
# Corresponds to the JSON property `totalTokenCount`
|
|
17625
|
+
# @return [Fixnum]
|
|
17626
|
+
attr_accessor :total_token_count
|
|
17627
|
+
|
|
17628
|
+
def initialize(**args)
|
|
17629
|
+
update!(**args)
|
|
17630
|
+
end
|
|
17631
|
+
|
|
17632
|
+
# Update properties of this object
|
|
17633
|
+
def update!(**args)
|
|
17634
|
+
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
17635
|
+
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
17636
|
+
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
17637
|
+
end
|
|
17638
|
+
end
|
|
17639
|
+
|
|
17548
17640
|
#
|
|
17549
17641
|
class GoogleCloudDialogflowV2beta1KnowledgeBase
|
|
17550
17642
|
include Google::Apis::Core::Hashable
|
|
@@ -19656,6 +19748,66 @@ module Google
|
|
|
19656
19748
|
end
|
|
19657
19749
|
end
|
|
19658
19750
|
|
|
19751
|
+
#
|
|
19752
|
+
class GoogleCloudDialogflowV2beta1SipConfig
|
|
19753
|
+
include Google::Apis::Core::Hashable
|
|
19754
|
+
|
|
19755
|
+
#
|
|
19756
|
+
# Corresponds to the JSON property `allowVirtualAgentInteraction`
|
|
19757
|
+
# @return [Boolean]
|
|
19758
|
+
attr_accessor :allow_virtual_agent_interaction
|
|
19759
|
+
alias_method :allow_virtual_agent_interaction?, :allow_virtual_agent_interaction
|
|
19760
|
+
|
|
19761
|
+
#
|
|
19762
|
+
# Corresponds to the JSON property `copyInboundCallLegHeaders`
|
|
19763
|
+
# @return [Array<String>]
|
|
19764
|
+
attr_accessor :copy_inbound_call_leg_headers
|
|
19765
|
+
|
|
19766
|
+
#
|
|
19767
|
+
# Corresponds to the JSON property `createConversationOnTheFly`
|
|
19768
|
+
# @return [Boolean]
|
|
19769
|
+
attr_accessor :create_conversation_on_the_fly
|
|
19770
|
+
alias_method :create_conversation_on_the_fly?, :create_conversation_on_the_fly
|
|
19771
|
+
|
|
19772
|
+
#
|
|
19773
|
+
# Corresponds to the JSON property `ignoreReinviteMediaDirection`
|
|
19774
|
+
# @return [Boolean]
|
|
19775
|
+
attr_accessor :ignore_reinvite_media_direction
|
|
19776
|
+
alias_method :ignore_reinvite_media_direction?, :ignore_reinvite_media_direction
|
|
19777
|
+
|
|
19778
|
+
#
|
|
19779
|
+
# Corresponds to the JSON property `inactiveStart`
|
|
19780
|
+
# @return [Boolean]
|
|
19781
|
+
attr_accessor :inactive_start
|
|
19782
|
+
alias_method :inactive_start?, :inactive_start
|
|
19783
|
+
|
|
19784
|
+
#
|
|
19785
|
+
# Corresponds to the JSON property `keepConversationRunning`
|
|
19786
|
+
# @return [Boolean]
|
|
19787
|
+
attr_accessor :keep_conversation_running
|
|
19788
|
+
alias_method :keep_conversation_running?, :keep_conversation_running
|
|
19789
|
+
|
|
19790
|
+
#
|
|
19791
|
+
# Corresponds to the JSON property `maxAudioRecordingDuration`
|
|
19792
|
+
# @return [String]
|
|
19793
|
+
attr_accessor :max_audio_recording_duration
|
|
19794
|
+
|
|
19795
|
+
def initialize(**args)
|
|
19796
|
+
update!(**args)
|
|
19797
|
+
end
|
|
19798
|
+
|
|
19799
|
+
# Update properties of this object
|
|
19800
|
+
def update!(**args)
|
|
19801
|
+
@allow_virtual_agent_interaction = args[:allow_virtual_agent_interaction] if args.key?(:allow_virtual_agent_interaction)
|
|
19802
|
+
@copy_inbound_call_leg_headers = args[:copy_inbound_call_leg_headers] if args.key?(:copy_inbound_call_leg_headers)
|
|
19803
|
+
@create_conversation_on_the_fly = args[:create_conversation_on_the_fly] if args.key?(:create_conversation_on_the_fly)
|
|
19804
|
+
@ignore_reinvite_media_direction = args[:ignore_reinvite_media_direction] if args.key?(:ignore_reinvite_media_direction)
|
|
19805
|
+
@inactive_start = args[:inactive_start] if args.key?(:inactive_start)
|
|
19806
|
+
@keep_conversation_running = args[:keep_conversation_running] if args.key?(:keep_conversation_running)
|
|
19807
|
+
@max_audio_recording_duration = args[:max_audio_recording_duration] if args.key?(:max_audio_recording_duration)
|
|
19808
|
+
end
|
|
19809
|
+
end
|
|
19810
|
+
|
|
19659
19811
|
#
|
|
19660
19812
|
class GoogleCloudDialogflowV2beta1SipTrunk
|
|
19661
19813
|
include Google::Apis::Core::Hashable
|
|
@@ -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.
|
|
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
|
|
@@ -1822,6 +1822,12 @@ module Google
|
|
|
1822
1822
|
include Google::Apis::Core::JsonObjectSupport
|
|
1823
1823
|
end
|
|
1824
1824
|
|
|
1825
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
1826
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1827
|
+
|
|
1828
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1829
|
+
end
|
|
1830
|
+
|
|
1825
1831
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
|
1826
1832
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1827
1833
|
|
|
@@ -3178,6 +3184,12 @@ module Google
|
|
|
3178
3184
|
include Google::Apis::Core::JsonObjectSupport
|
|
3179
3185
|
end
|
|
3180
3186
|
|
|
3187
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
3188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3189
|
+
|
|
3190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3191
|
+
end
|
|
3192
|
+
|
|
3181
3193
|
class GoogleCloudDialogflowV2beta1KnowledgeBase
|
|
3182
3194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3183
3195
|
|
|
@@ -3586,6 +3598,12 @@ module Google
|
|
|
3586
3598
|
include Google::Apis::Core::JsonObjectSupport
|
|
3587
3599
|
end
|
|
3588
3600
|
|
|
3601
|
+
class GoogleCloudDialogflowV2beta1SipConfig
|
|
3602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3603
|
+
|
|
3604
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3605
|
+
end
|
|
3606
|
+
|
|
3589
3607
|
class GoogleCloudDialogflowV2beta1SipTrunk
|
|
3590
3608
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3591
3609
|
|
|
@@ -7096,12 +7114,15 @@ module Google
|
|
|
7096
7114
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
7097
7115
|
# @private
|
|
7098
7116
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7117
|
+
hash :ces_debug_info, as: 'cesDebugInfo'
|
|
7099
7118
|
property :datastore_response_reason, as: 'datastoreResponseReason'
|
|
7100
7119
|
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo::Representation
|
|
7101
7120
|
|
|
7102
7121
|
property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
|
|
7103
7122
|
|
|
7104
7123
|
property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
|
|
7124
|
+
property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
|
|
7125
|
+
|
|
7105
7126
|
property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
|
|
7106
7127
|
property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ServiceLatency, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ServiceLatency::Representation
|
|
7107
7128
|
|
|
@@ -7131,6 +7152,15 @@ module Google
|
|
|
7131
7152
|
end
|
|
7132
7153
|
end
|
|
7133
7154
|
|
|
7155
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
7156
|
+
# @private
|
|
7157
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7158
|
+
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
7159
|
+
property :prompt_token_count, as: 'promptTokenCount'
|
|
7160
|
+
property :total_token_count, as: 'totalTokenCount'
|
|
7161
|
+
end
|
|
7162
|
+
end
|
|
7163
|
+
|
|
7134
7164
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
|
7135
7165
|
# @private
|
|
7136
7166
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8052,6 +8082,8 @@ module Google
|
|
|
8052
8082
|
property :notification_config, as: 'notificationConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1NotificationConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1NotificationConfig::Representation
|
|
8053
8083
|
|
|
8054
8084
|
property :security_settings, as: 'securitySettings'
|
|
8085
|
+
property :sip_config, as: 'sipConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SipConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SipConfig::Representation
|
|
8086
|
+
|
|
8055
8087
|
property :stt_config, as: 'sttConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SpeechToTextConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SpeechToTextConfig::Representation
|
|
8056
8088
|
|
|
8057
8089
|
property :time_zone, as: 'timeZone'
|
|
@@ -9519,12 +9551,15 @@ module Google
|
|
|
9519
9551
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
9520
9552
|
# @private
|
|
9521
9553
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9554
|
+
hash :ces_debug_info, as: 'cesDebugInfo'
|
|
9522
9555
|
property :datastore_response_reason, as: 'datastoreResponseReason'
|
|
9523
9556
|
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo::Representation
|
|
9524
9557
|
|
|
9525
9558
|
property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
|
|
9526
9559
|
|
|
9527
9560
|
property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
|
|
9561
|
+
property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
|
|
9562
|
+
|
|
9528
9563
|
property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
|
|
9529
9564
|
property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ServiceLatency, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ServiceLatency::Representation
|
|
9530
9565
|
|
|
@@ -9554,6 +9589,15 @@ module Google
|
|
|
9554
9589
|
end
|
|
9555
9590
|
end
|
|
9556
9591
|
|
|
9592
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
9593
|
+
# @private
|
|
9594
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9595
|
+
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
9596
|
+
property :prompt_token_count, as: 'promptTokenCount'
|
|
9597
|
+
property :total_token_count, as: 'totalTokenCount'
|
|
9598
|
+
end
|
|
9599
|
+
end
|
|
9600
|
+
|
|
9557
9601
|
class GoogleCloudDialogflowV2beta1KnowledgeBase
|
|
9558
9602
|
# @private
|
|
9559
9603
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10232,6 +10276,19 @@ module Google
|
|
|
10232
10276
|
end
|
|
10233
10277
|
end
|
|
10234
10278
|
|
|
10279
|
+
class GoogleCloudDialogflowV2beta1SipConfig
|
|
10280
|
+
# @private
|
|
10281
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10282
|
+
property :allow_virtual_agent_interaction, as: 'allowVirtualAgentInteraction'
|
|
10283
|
+
collection :copy_inbound_call_leg_headers, as: 'copyInboundCallLegHeaders'
|
|
10284
|
+
property :create_conversation_on_the_fly, as: 'createConversationOnTheFly'
|
|
10285
|
+
property :ignore_reinvite_media_direction, as: 'ignoreReinviteMediaDirection'
|
|
10286
|
+
property :inactive_start, as: 'inactiveStart'
|
|
10287
|
+
property :keep_conversation_running, as: 'keepConversationRunning'
|
|
10288
|
+
property :max_audio_recording_duration, as: 'maxAudioRecordingDuration'
|
|
10289
|
+
end
|
|
10290
|
+
end
|
|
10291
|
+
|
|
10235
10292
|
class GoogleCloudDialogflowV2beta1SipTrunk
|
|
10236
10293
|
# @private
|
|
10237
10294
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
|
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_v2beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.124.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|