google-apis-dialogflow_v3beta1 0.118.0 → 0.120.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: 5f17a7e9063632501b5122b93d3a65b977e6af07602da04e0bd7838078eacb9d
|
|
4
|
+
data.tar.gz: fe527108ffcadf73922f9d314bd89e6299ff20c14c96bb4eef0caca4a409a7ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a856f45c65372a2ff1a3bd17ad43a86be792a86ea87d4a196164425302c664f35c7d297e88a8c0f6c5a28c7a8c29866dbea9736af3ac7d3cb28f89fcdbe7a58
|
|
7
|
+
data.tar.gz: f722dee23d6f213fa8a113f8beeaa8720fa1fdc987012c984e0a31c93a561b63097508d71a2c2a3fbb09643615d292738a18e09b9190139feadc65949ebdfef2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
|
2
2
|
|
|
3
|
+
### v0.120.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260604
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
8
|
+
### v0.119.0 (2026-05-24)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20260518
|
|
11
|
+
|
|
3
12
|
### v0.118.0 (2026-05-03)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260426
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/dialogflow/) may provide gu
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -17073,6 +17073,25 @@ module Google
|
|
|
17073
17073
|
end
|
|
17074
17074
|
end
|
|
17075
17075
|
|
|
17076
|
+
#
|
|
17077
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
17078
|
+
include Google::Apis::Core::Hashable
|
|
17079
|
+
|
|
17080
|
+
#
|
|
17081
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
17082
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery]
|
|
17083
|
+
attr_accessor :suggested_query
|
|
17084
|
+
|
|
17085
|
+
def initialize(**args)
|
|
17086
|
+
update!(**args)
|
|
17087
|
+
end
|
|
17088
|
+
|
|
17089
|
+
# Update properties of this object
|
|
17090
|
+
def update!(**args)
|
|
17091
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
17092
|
+
end
|
|
17093
|
+
end
|
|
17094
|
+
|
|
17076
17095
|
#
|
|
17077
17096
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
17078
17097
|
include Google::Apis::Core::Hashable
|
|
@@ -17225,6 +17244,11 @@ module Google
|
|
|
17225
17244
|
# @return [String]
|
|
17226
17245
|
attr_accessor :query_text
|
|
17227
17246
|
|
|
17247
|
+
#
|
|
17248
|
+
# Corresponds to the JSON property `searchContexts`
|
|
17249
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
17250
|
+
attr_accessor :search_contexts
|
|
17251
|
+
|
|
17228
17252
|
def initialize(**args)
|
|
17229
17253
|
update!(**args)
|
|
17230
17254
|
end
|
|
@@ -17232,6 +17256,32 @@ module Google
|
|
|
17232
17256
|
# Update properties of this object
|
|
17233
17257
|
def update!(**args)
|
|
17234
17258
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
17259
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
17260
|
+
end
|
|
17261
|
+
end
|
|
17262
|
+
|
|
17263
|
+
#
|
|
17264
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
17265
|
+
include Google::Apis::Core::Hashable
|
|
17266
|
+
|
|
17267
|
+
#
|
|
17268
|
+
# Corresponds to the JSON property `key`
|
|
17269
|
+
# @return [String]
|
|
17270
|
+
attr_accessor :key
|
|
17271
|
+
|
|
17272
|
+
#
|
|
17273
|
+
# Corresponds to the JSON property `value`
|
|
17274
|
+
# @return [String]
|
|
17275
|
+
attr_accessor :value
|
|
17276
|
+
|
|
17277
|
+
def initialize(**args)
|
|
17278
|
+
update!(**args)
|
|
17279
|
+
end
|
|
17280
|
+
|
|
17281
|
+
# Update properties of this object
|
|
17282
|
+
def update!(**args)
|
|
17283
|
+
@key = args[:key] if args.key?(:key)
|
|
17284
|
+
@value = args[:value] if args.key?(:value)
|
|
17235
17285
|
end
|
|
17236
17286
|
end
|
|
17237
17287
|
|
|
@@ -17239,6 +17289,11 @@ module Google
|
|
|
17239
17289
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
17240
17290
|
include Google::Apis::Core::Hashable
|
|
17241
17291
|
|
|
17292
|
+
#
|
|
17293
|
+
# Corresponds to the JSON property `cesDebugInfo`
|
|
17294
|
+
# @return [Hash<String,Object>]
|
|
17295
|
+
attr_accessor :ces_debug_info
|
|
17296
|
+
|
|
17242
17297
|
#
|
|
17243
17298
|
# Corresponds to the JSON property `datastoreResponseReason`
|
|
17244
17299
|
# @return [String]
|
|
@@ -17259,6 +17314,11 @@ module Google
|
|
|
17259
17314
|
# @return [String]
|
|
17260
17315
|
attr_accessor :query_categorization_failure_reason
|
|
17261
17316
|
|
|
17317
|
+
#
|
|
17318
|
+
# Corresponds to the JSON property `queryGenerationDebugInfo`
|
|
17319
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
|
|
17320
|
+
attr_accessor :query_generation_debug_info
|
|
17321
|
+
|
|
17262
17322
|
#
|
|
17263
17323
|
# Corresponds to the JSON property `queryGenerationFailureReason`
|
|
17264
17324
|
# @return [String]
|
|
@@ -17275,10 +17335,12 @@ module Google
|
|
|
17275
17335
|
|
|
17276
17336
|
# Update properties of this object
|
|
17277
17337
|
def update!(**args)
|
|
17338
|
+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
|
|
17278
17339
|
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
|
|
17279
17340
|
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
|
|
17280
17341
|
@knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
|
|
17281
17342
|
@query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
|
|
17343
|
+
@query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
|
|
17282
17344
|
@query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
|
|
17283
17345
|
@service_latency = args[:service_latency] if args.key?(:service_latency)
|
|
17284
17346
|
end
|
|
@@ -17415,6 +17477,37 @@ module Google
|
|
|
17415
17477
|
end
|
|
17416
17478
|
end
|
|
17417
17479
|
|
|
17480
|
+
#
|
|
17481
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
17482
|
+
include Google::Apis::Core::Hashable
|
|
17483
|
+
|
|
17484
|
+
#
|
|
17485
|
+
# Corresponds to the JSON property `candidatesTokenCount`
|
|
17486
|
+
# @return [Fixnum]
|
|
17487
|
+
attr_accessor :candidates_token_count
|
|
17488
|
+
|
|
17489
|
+
#
|
|
17490
|
+
# Corresponds to the JSON property `promptTokenCount`
|
|
17491
|
+
# @return [Fixnum]
|
|
17492
|
+
attr_accessor :prompt_token_count
|
|
17493
|
+
|
|
17494
|
+
#
|
|
17495
|
+
# Corresponds to the JSON property `totalTokenCount`
|
|
17496
|
+
# @return [Fixnum]
|
|
17497
|
+
attr_accessor :total_token_count
|
|
17498
|
+
|
|
17499
|
+
def initialize(**args)
|
|
17500
|
+
update!(**args)
|
|
17501
|
+
end
|
|
17502
|
+
|
|
17503
|
+
# Update properties of this object
|
|
17504
|
+
def update!(**args)
|
|
17505
|
+
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
17506
|
+
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
17507
|
+
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
17508
|
+
end
|
|
17509
|
+
end
|
|
17510
|
+
|
|
17418
17511
|
#
|
|
17419
17512
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
|
17420
17513
|
include Google::Apis::Core::Hashable
|
|
@@ -18064,6 +18157,11 @@ module Google
|
|
|
18064
18157
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
18065
18158
|
include Google::Apis::Core::Hashable
|
|
18066
18159
|
|
|
18160
|
+
#
|
|
18161
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
18162
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
18163
|
+
attr_accessor :additional_suggested_query_results
|
|
18164
|
+
|
|
18067
18165
|
#
|
|
18068
18166
|
# Corresponds to the JSON property `contextSize`
|
|
18069
18167
|
# @return [Fixnum]
|
|
@@ -18085,6 +18183,7 @@ module Google
|
|
|
18085
18183
|
|
|
18086
18184
|
# Update properties of this object
|
|
18087
18185
|
def update!(**args)
|
|
18186
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
18088
18187
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
18089
18188
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
18090
18189
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -21257,6 +21356,25 @@ module Google
|
|
|
21257
21356
|
end
|
|
21258
21357
|
end
|
|
21259
21358
|
|
|
21359
|
+
#
|
|
21360
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
21361
|
+
include Google::Apis::Core::Hashable
|
|
21362
|
+
|
|
21363
|
+
#
|
|
21364
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
21365
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery]
|
|
21366
|
+
attr_accessor :suggested_query
|
|
21367
|
+
|
|
21368
|
+
def initialize(**args)
|
|
21369
|
+
update!(**args)
|
|
21370
|
+
end
|
|
21371
|
+
|
|
21372
|
+
# Update properties of this object
|
|
21373
|
+
def update!(**args)
|
|
21374
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
21375
|
+
end
|
|
21376
|
+
end
|
|
21377
|
+
|
|
21260
21378
|
#
|
|
21261
21379
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
21262
21380
|
include Google::Apis::Core::Hashable
|
|
@@ -21409,6 +21527,11 @@ module Google
|
|
|
21409
21527
|
# @return [String]
|
|
21410
21528
|
attr_accessor :query_text
|
|
21411
21529
|
|
|
21530
|
+
#
|
|
21531
|
+
# Corresponds to the JSON property `searchContexts`
|
|
21532
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
21533
|
+
attr_accessor :search_contexts
|
|
21534
|
+
|
|
21412
21535
|
def initialize(**args)
|
|
21413
21536
|
update!(**args)
|
|
21414
21537
|
end
|
|
@@ -21416,6 +21539,32 @@ module Google
|
|
|
21416
21539
|
# Update properties of this object
|
|
21417
21540
|
def update!(**args)
|
|
21418
21541
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
21542
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
21543
|
+
end
|
|
21544
|
+
end
|
|
21545
|
+
|
|
21546
|
+
#
|
|
21547
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
21548
|
+
include Google::Apis::Core::Hashable
|
|
21549
|
+
|
|
21550
|
+
#
|
|
21551
|
+
# Corresponds to the JSON property `key`
|
|
21552
|
+
# @return [String]
|
|
21553
|
+
attr_accessor :key
|
|
21554
|
+
|
|
21555
|
+
#
|
|
21556
|
+
# Corresponds to the JSON property `value`
|
|
21557
|
+
# @return [String]
|
|
21558
|
+
attr_accessor :value
|
|
21559
|
+
|
|
21560
|
+
def initialize(**args)
|
|
21561
|
+
update!(**args)
|
|
21562
|
+
end
|
|
21563
|
+
|
|
21564
|
+
# Update properties of this object
|
|
21565
|
+
def update!(**args)
|
|
21566
|
+
@key = args[:key] if args.key?(:key)
|
|
21567
|
+
@value = args[:value] if args.key?(:value)
|
|
21419
21568
|
end
|
|
21420
21569
|
end
|
|
21421
21570
|
|
|
@@ -21423,6 +21572,11 @@ module Google
|
|
|
21423
21572
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
21424
21573
|
include Google::Apis::Core::Hashable
|
|
21425
21574
|
|
|
21575
|
+
#
|
|
21576
|
+
# Corresponds to the JSON property `cesDebugInfo`
|
|
21577
|
+
# @return [Hash<String,Object>]
|
|
21578
|
+
attr_accessor :ces_debug_info
|
|
21579
|
+
|
|
21426
21580
|
#
|
|
21427
21581
|
# Corresponds to the JSON property `datastoreResponseReason`
|
|
21428
21582
|
# @return [String]
|
|
@@ -21443,6 +21597,11 @@ module Google
|
|
|
21443
21597
|
# @return [String]
|
|
21444
21598
|
attr_accessor :query_categorization_failure_reason
|
|
21445
21599
|
|
|
21600
|
+
#
|
|
21601
|
+
# Corresponds to the JSON property `queryGenerationDebugInfo`
|
|
21602
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
|
|
21603
|
+
attr_accessor :query_generation_debug_info
|
|
21604
|
+
|
|
21446
21605
|
#
|
|
21447
21606
|
# Corresponds to the JSON property `queryGenerationFailureReason`
|
|
21448
21607
|
# @return [String]
|
|
@@ -21459,10 +21618,12 @@ module Google
|
|
|
21459
21618
|
|
|
21460
21619
|
# Update properties of this object
|
|
21461
21620
|
def update!(**args)
|
|
21621
|
+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
|
|
21462
21622
|
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
|
|
21463
21623
|
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
|
|
21464
21624
|
@knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
|
|
21465
21625
|
@query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
|
|
21626
|
+
@query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
|
|
21466
21627
|
@query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
|
|
21467
21628
|
@service_latency = args[:service_latency] if args.key?(:service_latency)
|
|
21468
21629
|
end
|
|
@@ -21599,6 +21760,37 @@ module Google
|
|
|
21599
21760
|
end
|
|
21600
21761
|
end
|
|
21601
21762
|
|
|
21763
|
+
#
|
|
21764
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
21765
|
+
include Google::Apis::Core::Hashable
|
|
21766
|
+
|
|
21767
|
+
#
|
|
21768
|
+
# Corresponds to the JSON property `candidatesTokenCount`
|
|
21769
|
+
# @return [Fixnum]
|
|
21770
|
+
attr_accessor :candidates_token_count
|
|
21771
|
+
|
|
21772
|
+
#
|
|
21773
|
+
# Corresponds to the JSON property `promptTokenCount`
|
|
21774
|
+
# @return [Fixnum]
|
|
21775
|
+
attr_accessor :prompt_token_count
|
|
21776
|
+
|
|
21777
|
+
#
|
|
21778
|
+
# Corresponds to the JSON property `totalTokenCount`
|
|
21779
|
+
# @return [Fixnum]
|
|
21780
|
+
attr_accessor :total_token_count
|
|
21781
|
+
|
|
21782
|
+
def initialize(**args)
|
|
21783
|
+
update!(**args)
|
|
21784
|
+
end
|
|
21785
|
+
|
|
21786
|
+
# Update properties of this object
|
|
21787
|
+
def update!(**args)
|
|
21788
|
+
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
21789
|
+
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
21790
|
+
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
21791
|
+
end
|
|
21792
|
+
end
|
|
21793
|
+
|
|
21602
21794
|
#
|
|
21603
21795
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
|
21604
21796
|
include Google::Apis::Core::Hashable
|
|
@@ -22461,6 +22653,11 @@ module Google
|
|
|
22461
22653
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
22462
22654
|
include Google::Apis::Core::Hashable
|
|
22463
22655
|
|
|
22656
|
+
#
|
|
22657
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
22658
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
22659
|
+
attr_accessor :additional_suggested_query_results
|
|
22660
|
+
|
|
22464
22661
|
#
|
|
22465
22662
|
# Corresponds to the JSON property `contextSize`
|
|
22466
22663
|
# @return [Fixnum]
|
|
@@ -22482,6 +22679,7 @@ module Google
|
|
|
22482
22679
|
|
|
22483
22680
|
# Update properties of this object
|
|
22484
22681
|
def update!(**args)
|
|
22682
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
22485
22683
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
22486
22684
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
22487
22685
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV3beta1
|
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.120.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260604"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3160,6 +3160,12 @@ module Google
|
|
|
3160
3160
|
include Google::Apis::Core::JsonObjectSupport
|
|
3161
3161
|
end
|
|
3162
3162
|
|
|
3163
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3165
|
+
|
|
3166
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3167
|
+
end
|
|
3168
|
+
|
|
3163
3169
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
3164
3170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3165
3171
|
|
|
@@ -3196,6 +3202,12 @@ module Google
|
|
|
3196
3202
|
include Google::Apis::Core::JsonObjectSupport
|
|
3197
3203
|
end
|
|
3198
3204
|
|
|
3205
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3207
|
+
|
|
3208
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3209
|
+
end
|
|
3210
|
+
|
|
3199
3211
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
3200
3212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3201
3213
|
|
|
@@ -3208,6 +3220,12 @@ module Google
|
|
|
3208
3220
|
include Google::Apis::Core::JsonObjectSupport
|
|
3209
3221
|
end
|
|
3210
3222
|
|
|
3223
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
3224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3225
|
+
|
|
3226
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3227
|
+
end
|
|
3228
|
+
|
|
3211
3229
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
|
3212
3230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3213
3231
|
|
|
@@ -3898,6 +3916,12 @@ module Google
|
|
|
3898
3916
|
include Google::Apis::Core::JsonObjectSupport
|
|
3899
3917
|
end
|
|
3900
3918
|
|
|
3919
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3920
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3921
|
+
|
|
3922
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3923
|
+
end
|
|
3924
|
+
|
|
3901
3925
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
3902
3926
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3903
3927
|
|
|
@@ -3934,6 +3958,12 @@ module Google
|
|
|
3934
3958
|
include Google::Apis::Core::JsonObjectSupport
|
|
3935
3959
|
end
|
|
3936
3960
|
|
|
3961
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3962
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3963
|
+
|
|
3964
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3965
|
+
end
|
|
3966
|
+
|
|
3937
3967
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
3938
3968
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3939
3969
|
|
|
@@ -3946,6 +3976,12 @@ module Google
|
|
|
3946
3976
|
include Google::Apis::Core::JsonObjectSupport
|
|
3947
3977
|
end
|
|
3948
3978
|
|
|
3979
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
3980
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3981
|
+
|
|
3982
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3983
|
+
end
|
|
3984
|
+
|
|
3949
3985
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
|
3950
3986
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3951
3987
|
|
|
@@ -9564,6 +9600,14 @@ module Google
|
|
|
9564
9600
|
end
|
|
9565
9601
|
end
|
|
9566
9602
|
|
|
9603
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
9604
|
+
# @private
|
|
9605
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9606
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
9607
|
+
|
|
9608
|
+
end
|
|
9609
|
+
end
|
|
9610
|
+
|
|
9567
9611
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
9568
9612
|
# @private
|
|
9569
9613
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9617,18 +9661,31 @@ module Google
|
|
|
9617
9661
|
# @private
|
|
9618
9662
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9619
9663
|
property :query_text, as: 'queryText'
|
|
9664
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
9665
|
+
|
|
9666
|
+
end
|
|
9667
|
+
end
|
|
9668
|
+
|
|
9669
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
9670
|
+
# @private
|
|
9671
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9672
|
+
property :key, as: 'key'
|
|
9673
|
+
property :value, as: 'value'
|
|
9620
9674
|
end
|
|
9621
9675
|
end
|
|
9622
9676
|
|
|
9623
9677
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
9624
9678
|
# @private
|
|
9625
9679
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9680
|
+
hash :ces_debug_info, as: 'cesDebugInfo'
|
|
9626
9681
|
property :datastore_response_reason, as: 'datastoreResponseReason'
|
|
9627
9682
|
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo::Representation
|
|
9628
9683
|
|
|
9629
9684
|
property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
|
|
9630
9685
|
|
|
9631
9686
|
property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
|
|
9687
|
+
property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
|
|
9688
|
+
|
|
9632
9689
|
property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
|
|
9633
9690
|
property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ServiceLatency, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ServiceLatency::Representation
|
|
9634
9691
|
|
|
@@ -9658,6 +9715,15 @@ module Google
|
|
|
9658
9715
|
end
|
|
9659
9716
|
end
|
|
9660
9717
|
|
|
9718
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
9719
|
+
# @private
|
|
9720
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9721
|
+
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
9722
|
+
property :prompt_token_count, as: 'promptTokenCount'
|
|
9723
|
+
property :total_token_count, as: 'totalTokenCount'
|
|
9724
|
+
end
|
|
9725
|
+
end
|
|
9726
|
+
|
|
9661
9727
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
|
9662
9728
|
# @private
|
|
9663
9729
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9847,6 +9913,8 @@ module Google
|
|
|
9847
9913
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
9848
9914
|
# @private
|
|
9849
9915
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9916
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
9917
|
+
|
|
9850
9918
|
property :context_size, as: 'contextSize'
|
|
9851
9919
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswer::Representation
|
|
9852
9920
|
|
|
@@ -10861,6 +10929,14 @@ module Google
|
|
|
10861
10929
|
end
|
|
10862
10930
|
end
|
|
10863
10931
|
|
|
10932
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
10933
|
+
# @private
|
|
10934
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10935
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
10936
|
+
|
|
10937
|
+
end
|
|
10938
|
+
end
|
|
10939
|
+
|
|
10864
10940
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
10865
10941
|
# @private
|
|
10866
10942
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10914,18 +10990,31 @@ module Google
|
|
|
10914
10990
|
# @private
|
|
10915
10991
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10916
10992
|
property :query_text, as: 'queryText'
|
|
10993
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
10994
|
+
|
|
10995
|
+
end
|
|
10996
|
+
end
|
|
10997
|
+
|
|
10998
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
10999
|
+
# @private
|
|
11000
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11001
|
+
property :key, as: 'key'
|
|
11002
|
+
property :value, as: 'value'
|
|
10917
11003
|
end
|
|
10918
11004
|
end
|
|
10919
11005
|
|
|
10920
11006
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
10921
11007
|
# @private
|
|
10922
11008
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11009
|
+
hash :ces_debug_info, as: 'cesDebugInfo'
|
|
10923
11010
|
property :datastore_response_reason, as: 'datastoreResponseReason'
|
|
10924
11011
|
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo::Representation
|
|
10925
11012
|
|
|
10926
11013
|
property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
|
|
10927
11014
|
|
|
10928
11015
|
property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
|
|
11016
|
+
property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
|
|
11017
|
+
|
|
10929
11018
|
property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
|
|
10930
11019
|
property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ServiceLatency, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ServiceLatency::Representation
|
|
10931
11020
|
|
|
@@ -10955,6 +11044,15 @@ module Google
|
|
|
10955
11044
|
end
|
|
10956
11045
|
end
|
|
10957
11046
|
|
|
11047
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
11048
|
+
# @private
|
|
11049
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11050
|
+
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
11051
|
+
property :prompt_token_count, as: 'promptTokenCount'
|
|
11052
|
+
property :total_token_count, as: 'totalTokenCount'
|
|
11053
|
+
end
|
|
11054
|
+
end
|
|
11055
|
+
|
|
10958
11056
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
|
10959
11057
|
# @private
|
|
10960
11058
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -11216,6 +11314,8 @@ module Google
|
|
|
11216
11314
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
11217
11315
|
# @private
|
|
11218
11316
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11317
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
11318
|
+
|
|
11219
11319
|
property :context_size, as: 'contextSize'
|
|
11220
11320
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer::Representation
|
|
11221
11321
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.120.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_v3beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.120.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|