google-apis-dialogflow_v3beta1 0.118.0 → 0.119.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: df1d95f1c26c2d2d665e8184696bbcaab471a53a15d01a83a53d8bb127995742
4
- data.tar.gz: 0d11c2495b94499193d538084a690585a6d8cff188b24175681da89adc2f377b
3
+ metadata.gz: aef97ac827d6ba17618d6ca253634b2eef54af2d14fa2954f07a63b5192d47ac
4
+ data.tar.gz: e17ec873bfe6b9c47a1f2752c6fa22d628dc5a45a46aba71c12e710e5967e34e
5
5
  SHA512:
6
- metadata.gz: 79e284195d13a4bf90d76c0a374e6aa935069a067c29cfdb9f194e442a473e80e4ad53ee2a67b02451b476661b8fb1644174126cdf942afabdf9955150d9c49c
7
- data.tar.gz: f917e4291dc6c24e0e8e7356bd46661b8d29d96253c17edffd631e3a5e564964abddfb905c8cb9cfe38eb6390c09b460aab7b87246e2dd9caf3150c95bf268ad
6
+ metadata.gz: b6d3d58922da7036760ef98d431e8b0d56a57d094db1d76ae8d1da47b0f27b620a7bc4629bb0666d62b14822e260ea14b8f3d5dd142739169d260717e8ecf15b
7
+ data.tar.gz: b2ffd5f5760c6c8a2fc4809565bdebc2741da4770feec7c5a6453a460e0d9bfe40172ba8a01661d14bb57b720973506508afbbc980a6324a56a46e476463a056
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.119.0 (2026-05-24)
4
+
5
+ * Regenerated from discovery document revision 20260518
6
+
3
7
  ### v0.118.0 (2026-05-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20260426
@@ -17239,6 +17239,11 @@ module Google
17239
17239
  class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
17240
17240
  include Google::Apis::Core::Hashable
17241
17241
 
17242
+ #
17243
+ # Corresponds to the JSON property `cesDebugInfo`
17244
+ # @return [Hash<String,Object>]
17245
+ attr_accessor :ces_debug_info
17246
+
17242
17247
  #
17243
17248
  # Corresponds to the JSON property `datastoreResponseReason`
17244
17249
  # @return [String]
@@ -17259,6 +17264,11 @@ module Google
17259
17264
  # @return [String]
17260
17265
  attr_accessor :query_categorization_failure_reason
17261
17266
 
17267
+ #
17268
+ # Corresponds to the JSON property `queryGenerationDebugInfo`
17269
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
17270
+ attr_accessor :query_generation_debug_info
17271
+
17262
17272
  #
17263
17273
  # Corresponds to the JSON property `queryGenerationFailureReason`
17264
17274
  # @return [String]
@@ -17275,10 +17285,12 @@ module Google
17275
17285
 
17276
17286
  # Update properties of this object
17277
17287
  def update!(**args)
17288
+ @ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
17278
17289
  @datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
17279
17290
  @ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
17280
17291
  @knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
17281
17292
  @query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
17293
+ @query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
17282
17294
  @query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
17283
17295
  @service_latency = args[:service_latency] if args.key?(:service_latency)
17284
17296
  end
@@ -17415,6 +17427,37 @@ module Google
17415
17427
  end
17416
17428
  end
17417
17429
 
17430
+ #
17431
+ class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
17432
+ include Google::Apis::Core::Hashable
17433
+
17434
+ #
17435
+ # Corresponds to the JSON property `candidatesTokenCount`
17436
+ # @return [Fixnum]
17437
+ attr_accessor :candidates_token_count
17438
+
17439
+ #
17440
+ # Corresponds to the JSON property `promptTokenCount`
17441
+ # @return [Fixnum]
17442
+ attr_accessor :prompt_token_count
17443
+
17444
+ #
17445
+ # Corresponds to the JSON property `totalTokenCount`
17446
+ # @return [Fixnum]
17447
+ attr_accessor :total_token_count
17448
+
17449
+ def initialize(**args)
17450
+ update!(**args)
17451
+ end
17452
+
17453
+ # Update properties of this object
17454
+ def update!(**args)
17455
+ @candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
17456
+ @prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
17457
+ @total_token_count = args[:total_token_count] if args.key?(:total_token_count)
17458
+ end
17459
+ end
17460
+
17418
17461
  #
17419
17462
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
17420
17463
  include Google::Apis::Core::Hashable
@@ -21423,6 +21466,11 @@ module Google
21423
21466
  class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
21424
21467
  include Google::Apis::Core::Hashable
21425
21468
 
21469
+ #
21470
+ # Corresponds to the JSON property `cesDebugInfo`
21471
+ # @return [Hash<String,Object>]
21472
+ attr_accessor :ces_debug_info
21473
+
21426
21474
  #
21427
21475
  # Corresponds to the JSON property `datastoreResponseReason`
21428
21476
  # @return [String]
@@ -21443,6 +21491,11 @@ module Google
21443
21491
  # @return [String]
21444
21492
  attr_accessor :query_categorization_failure_reason
21445
21493
 
21494
+ #
21495
+ # Corresponds to the JSON property `queryGenerationDebugInfo`
21496
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
21497
+ attr_accessor :query_generation_debug_info
21498
+
21446
21499
  #
21447
21500
  # Corresponds to the JSON property `queryGenerationFailureReason`
21448
21501
  # @return [String]
@@ -21459,10 +21512,12 @@ module Google
21459
21512
 
21460
21513
  # Update properties of this object
21461
21514
  def update!(**args)
21515
+ @ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
21462
21516
  @datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
21463
21517
  @ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
21464
21518
  @knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
21465
21519
  @query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
21520
+ @query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
21466
21521
  @query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
21467
21522
  @service_latency = args[:service_latency] if args.key?(:service_latency)
21468
21523
  end
@@ -21599,6 +21654,37 @@ module Google
21599
21654
  end
21600
21655
  end
21601
21656
 
21657
+ #
21658
+ class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
21659
+ include Google::Apis::Core::Hashable
21660
+
21661
+ #
21662
+ # Corresponds to the JSON property `candidatesTokenCount`
21663
+ # @return [Fixnum]
21664
+ attr_accessor :candidates_token_count
21665
+
21666
+ #
21667
+ # Corresponds to the JSON property `promptTokenCount`
21668
+ # @return [Fixnum]
21669
+ attr_accessor :prompt_token_count
21670
+
21671
+ #
21672
+ # Corresponds to the JSON property `totalTokenCount`
21673
+ # @return [Fixnum]
21674
+ attr_accessor :total_token_count
21675
+
21676
+ def initialize(**args)
21677
+ update!(**args)
21678
+ end
21679
+
21680
+ # Update properties of this object
21681
+ def update!(**args)
21682
+ @candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
21683
+ @prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
21684
+ @total_token_count = args[:total_token_count] if args.key?(:total_token_count)
21685
+ end
21686
+ end
21687
+
21602
21688
  #
21603
21689
  class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
21604
21690
  include Google::Apis::Core::Hashable
@@ -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.118.0"
19
+ GEM_VERSION = "0.119.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 = "20260426"
25
+ REVISION = "20260518"
26
26
  end
27
27
  end
28
28
  end
@@ -3208,6 +3208,12 @@ module Google
3208
3208
  include Google::Apis::Core::JsonObjectSupport
3209
3209
  end
3210
3210
 
3211
+ class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
3212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3213
+
3214
+ include Google::Apis::Core::JsonObjectSupport
3215
+ end
3216
+
3211
3217
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
3212
3218
  class Representation < Google::Apis::Core::JsonRepresentation; end
3213
3219
 
@@ -3946,6 +3952,12 @@ module Google
3946
3952
  include Google::Apis::Core::JsonObjectSupport
3947
3953
  end
3948
3954
 
3955
+ class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
3956
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3957
+
3958
+ include Google::Apis::Core::JsonObjectSupport
3959
+ end
3960
+
3949
3961
  class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
3950
3962
  class Representation < Google::Apis::Core::JsonRepresentation; end
3951
3963
 
@@ -9623,12 +9635,15 @@ module Google
9623
9635
  class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
9624
9636
  # @private
9625
9637
  class Representation < Google::Apis::Core::JsonRepresentation
9638
+ hash :ces_debug_info, as: 'cesDebugInfo'
9626
9639
  property :datastore_response_reason, as: 'datastoreResponseReason'
9627
9640
  property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo::Representation
9628
9641
 
9629
9642
  property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
9630
9643
 
9631
9644
  property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
9645
+ property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
9646
+
9632
9647
  property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
9633
9648
  property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ServiceLatency, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ServiceLatency::Representation
9634
9649
 
@@ -9658,6 +9673,15 @@ module Google
9658
9673
  end
9659
9674
  end
9660
9675
 
9676
+ class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
9677
+ # @private
9678
+ class Representation < Google::Apis::Core::JsonRepresentation
9679
+ property :candidates_token_count, as: 'candidatesTokenCount'
9680
+ property :prompt_token_count, as: 'promptTokenCount'
9681
+ property :total_token_count, as: 'totalTokenCount'
9682
+ end
9683
+ end
9684
+
9661
9685
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
9662
9686
  # @private
9663
9687
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10920,12 +10944,15 @@ module Google
10920
10944
  class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
10921
10945
  # @private
10922
10946
  class Representation < Google::Apis::Core::JsonRepresentation
10947
+ hash :ces_debug_info, as: 'cesDebugInfo'
10923
10948
  property :datastore_response_reason, as: 'datastoreResponseReason'
10924
10949
  property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo::Representation
10925
10950
 
10926
10951
  property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
10927
10952
 
10928
10953
  property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
10954
+ property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
10955
+
10929
10956
  property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
10930
10957
  property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ServiceLatency, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ServiceLatency::Representation
10931
10958
 
@@ -10955,6 +10982,15 @@ module Google
10955
10982
  end
10956
10983
  end
10957
10984
 
10985
+ class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
10986
+ # @private
10987
+ class Representation < Google::Apis::Core::JsonRepresentation
10988
+ property :candidates_token_count, as: 'candidatesTokenCount'
10989
+ property :prompt_token_count, as: 'promptTokenCount'
10990
+ property :total_token_count, as: 'totalTokenCount'
10991
+ end
10992
+ end
10993
+
10958
10994
  class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
10959
10995
  # @private
10960
10996
  class Representation < Google::Apis::Core::JsonRepresentation
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.118.0
4
+ version: 0.119.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.118.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.119.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: