google-apis-firebaseml_v2beta 0.14.0 → 0.16.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: a29eb0cf3b23df42fdef73d4a32dfd2604484c4ee07e657200209f24c445d8d9
4
- data.tar.gz: 3269721cf5a63612e6eda8ea0d2cea0bfaffc9db6413ee4c5fb5819ffd19c055
3
+ metadata.gz: c5dba14d1e472516c55e4e5d8a927dfc2c7649dcf44699ea1d498f42732436f6
4
+ data.tar.gz: 8417b475ff5d15ce06a9db6966d5400137c1c1c482364bd39d2f059764bbba99
5
5
  SHA512:
6
- metadata.gz: 75dcdcb6bb67e7ef65c61133d04f81839f655dabbf1aa3185e9d3c5ed9a85aa78329eba5f2d4b2ca9e8638858d54621aca7256883510131d78324d097b7a8e93
7
- data.tar.gz: 2046a7eca41e8138b35bbdfaa982a5897e49b56f6d32119db191f567a054316bea4244d3510e3e0fc4ed1d8d14ea78b89ea954e6ffa02841e0cb59119c47d176
6
+ metadata.gz: f5c9ae36e2a5ec8086a8c765c6863bc6c7a70823830aeb7b230e691c169a36fa8b676029f82109ff4c394a1401dc52dfedbd0782bc7a55c56587efcb8c2c1e64
7
+ data.tar.gz: c0692dbb6d5345b69cf5046b35f4b1903752962095705a434e9b5b55c8baa9714587abefd56fc740f52df335e80830cfb46b80aa02261ce984fed1f7fc3d453d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firebaseml_v2beta
2
2
 
3
+ ### v0.16.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250326
6
+
7
+ ### v0.15.0 (2025-03-16)
8
+
9
+ * Regenerated from discovery document revision 20250312
10
+
3
11
  ### v0.14.0 (2025-02-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20250223
@@ -505,6 +505,12 @@ module Google
505
505
  # @return [Hash<String,Object>]
506
506
  attr_accessor :args
507
507
 
508
+ # Optional. The unique id of the function call. If populated, the client to
509
+ # execute the `function_call` and return the response with the matching `id`.
510
+ # Corresponds to the JSON property `id`
511
+ # @return [String]
512
+ attr_accessor :id
513
+
508
514
  # Required. The name of the function to call. Matches [FunctionDeclaration.name].
509
515
  # Corresponds to the JSON property `name`
510
516
  # @return [String]
@@ -517,6 +523,7 @@ module Google
517
523
  # Update properties of this object
518
524
  def update!(**args)
519
525
  @args = args[:args] if args.key?(:args)
526
+ @id = args[:id] if args.key?(:id)
520
527
  @name = args[:name] if args.key?(:name)
521
528
  end
522
529
  end
@@ -603,6 +610,12 @@ module Google
603
610
  class GoogleCloudAiplatformV1beta1FunctionResponse
604
611
  include Google::Apis::Core::Hashable
605
612
 
613
+ # Optional. The id of the function call this response is for. Populated by the
614
+ # client to match the corresponding function call `id`.
615
+ # Corresponds to the JSON property `id`
616
+ # @return [String]
617
+ attr_accessor :id
618
+
606
619
  # Required. The name of the function to call. Matches [FunctionDeclaration.name]
607
620
  # and [FunctionCall.name].
608
621
  # Corresponds to the JSON property `name`
@@ -623,6 +636,7 @@ module Google
623
636
 
624
637
  # Update properties of this object
625
638
  def update!(**args)
639
+ @id = args[:id] if args.key?(:id)
626
640
  @name = args[:name] if args.key?(:name)
627
641
  @response = args[:response] if args.key?(:response)
628
642
  end
@@ -824,6 +838,11 @@ module Google
824
838
  # @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
825
839
  attr_accessor :prompt_tokens_details
826
840
 
841
+ # Output only. Number of tokens present in thoughts output.
842
+ # Corresponds to the JSON property `thoughtsTokenCount`
843
+ # @return [Fixnum]
844
+ attr_accessor :thoughts_token_count
845
+
827
846
  # Output only. Number of tokens present in tool-use prompt(s).
828
847
  # Corresponds to the JSON property `toolUsePromptTokenCount`
829
848
  # @return [Fixnum]
@@ -841,6 +860,12 @@ module Google
841
860
  # @return [Fixnum]
842
861
  attr_accessor :total_token_count
843
862
 
863
+ # Output only. Traffic type. This shows whether a request consumes Pay-As-You-Go
864
+ # or Provisioned Throughput quota.
865
+ # Corresponds to the JSON property `trafficType`
866
+ # @return [String]
867
+ attr_accessor :traffic_type
868
+
844
869
  def initialize(**args)
845
870
  update!(**args)
846
871
  end
@@ -853,9 +878,11 @@ module Google
853
878
  @candidates_tokens_details = args[:candidates_tokens_details] if args.key?(:candidates_tokens_details)
854
879
  @prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
855
880
  @prompt_tokens_details = args[:prompt_tokens_details] if args.key?(:prompt_tokens_details)
881
+ @thoughts_token_count = args[:thoughts_token_count] if args.key?(:thoughts_token_count)
856
882
  @tool_use_prompt_token_count = args[:tool_use_prompt_token_count] if args.key?(:tool_use_prompt_token_count)
857
883
  @tool_use_prompt_tokens_details = args[:tool_use_prompt_tokens_details] if args.key?(:tool_use_prompt_tokens_details)
858
884
  @total_token_count = args[:total_token_count] if args.key?(:total_token_count)
885
+ @traffic_type = args[:traffic_type] if args.key?(:traffic_type)
859
886
  end
860
887
  end
861
888
 
@@ -895,6 +922,11 @@ module Google
895
922
  # @return [String]
896
923
  attr_accessor :media_resolution
897
924
 
925
+ # Config for model selection.
926
+ # Corresponds to the JSON property `modelConfig`
927
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GenerationConfigModelConfig]
928
+ attr_accessor :model_config
929
+
898
930
  # Optional. Positive penalties.
899
931
  # Corresponds to the JSON property `presencePenalty`
900
932
  # @return [Float]
@@ -952,6 +984,11 @@ module Google
952
984
  # @return [Float]
953
985
  attr_accessor :temperature
954
986
 
987
+ # Config for thinking features.
988
+ # Corresponds to the JSON property `thinkingConfig`
989
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig]
990
+ attr_accessor :thinking_config
991
+
955
992
  # Optional. If specified, top-k sampling will be used.
956
993
  # Corresponds to the JSON property `topK`
957
994
  # @return [Float]
@@ -974,6 +1011,7 @@ module Google
974
1011
  @logprobs = args[:logprobs] if args.key?(:logprobs)
975
1012
  @max_output_tokens = args[:max_output_tokens] if args.key?(:max_output_tokens)
976
1013
  @media_resolution = args[:media_resolution] if args.key?(:media_resolution)
1014
+ @model_config = args[:model_config] if args.key?(:model_config)
977
1015
  @presence_penalty = args[:presence_penalty] if args.key?(:presence_penalty)
978
1016
  @response_logprobs = args[:response_logprobs] if args.key?(:response_logprobs)
979
1017
  @response_mime_type = args[:response_mime_type] if args.key?(:response_mime_type)
@@ -984,11 +1022,31 @@ module Google
984
1022
  @speech_config = args[:speech_config] if args.key?(:speech_config)
985
1023
  @stop_sequences = args[:stop_sequences] if args.key?(:stop_sequences)
986
1024
  @temperature = args[:temperature] if args.key?(:temperature)
1025
+ @thinking_config = args[:thinking_config] if args.key?(:thinking_config)
987
1026
  @top_k = args[:top_k] if args.key?(:top_k)
988
1027
  @top_p = args[:top_p] if args.key?(:top_p)
989
1028
  end
990
1029
  end
991
1030
 
1031
+ # Config for model selection.
1032
+ class GoogleCloudAiplatformV1beta1GenerationConfigModelConfig
1033
+ include Google::Apis::Core::Hashable
1034
+
1035
+ # Required. Feature selection preference.
1036
+ # Corresponds to the JSON property `featureSelectionPreference`
1037
+ # @return [String]
1038
+ attr_accessor :feature_selection_preference
1039
+
1040
+ def initialize(**args)
1041
+ update!(**args)
1042
+ end
1043
+
1044
+ # Update properties of this object
1045
+ def update!(**args)
1046
+ @feature_selection_preference = args[:feature_selection_preference] if args.key?(:feature_selection_preference)
1047
+ end
1048
+ end
1049
+
992
1050
  # The configuration for routing the request to a specific model.
993
1051
  class GoogleCloudAiplatformV1beta1GenerationConfigRoutingConfig
994
1052
  include Google::Apis::Core::Hashable
@@ -1055,6 +1113,34 @@ module Google
1055
1113
  end
1056
1114
  end
1057
1115
 
1116
+ # Config for thinking features.
1117
+ class GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig
1118
+ include Google::Apis::Core::Hashable
1119
+
1120
+ # Optional. Indicates whether to enable thinking mode. If true, the model will
1121
+ # enable thinking mode.
1122
+ # Corresponds to the JSON property `enableThinking`
1123
+ # @return [Boolean]
1124
+ attr_accessor :enable_thinking
1125
+ alias_method :enable_thinking?, :enable_thinking
1126
+
1127
+ # Optional. Indicates the thinking budget in tokens. This is only applied when
1128
+ # enable_thinking is true.
1129
+ # Corresponds to the JSON property `thinkingBudget`
1130
+ # @return [Fixnum]
1131
+ attr_accessor :thinking_budget
1132
+
1133
+ def initialize(**args)
1134
+ update!(**args)
1135
+ end
1136
+
1137
+ # Update properties of this object
1138
+ def update!(**args)
1139
+ @enable_thinking = args[:enable_thinking] if args.key?(:enable_thinking)
1140
+ @thinking_budget = args[:thinking_budget] if args.key?(:thinking_budget)
1141
+ end
1142
+ end
1143
+
1058
1144
  # Tool to retrieve public web data for grounding, powered by Google.
1059
1145
  class GoogleCloudAiplatformV1beta1GoogleSearchRetrieval
1060
1146
  include Google::Apis::Core::Hashable
@@ -1103,6 +1189,12 @@ module Google
1103
1189
  class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
1104
1190
  include Google::Apis::Core::Hashable
1105
1191
 
1192
+ # A RagChunk includes the content of a chunk of a RagFile, and associated
1193
+ # metadata.
1194
+ # Corresponds to the JSON property `ragChunk`
1195
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RagChunk]
1196
+ attr_accessor :rag_chunk
1197
+
1106
1198
  # Text of the attribution.
1107
1199
  # Corresponds to the JSON property `text`
1108
1200
  # @return [String]
@@ -1124,6 +1216,7 @@ module Google
1124
1216
 
1125
1217
  # Update properties of this object
1126
1218
  def update!(**args)
1219
+ @rag_chunk = args[:rag_chunk] if args.key?(:rag_chunk)
1127
1220
  @text = args[:text] if args.key?(:text)
1128
1221
  @title = args[:title] if args.key?(:title)
1129
1222
  @uri = args[:uri] if args.key?(:uri)
@@ -1134,6 +1227,11 @@ module Google
1134
1227
  class GoogleCloudAiplatformV1beta1GroundingChunkWeb
1135
1228
  include Google::Apis::Core::Hashable
1136
1229
 
1230
+ # Domain of the (original) URI.
1231
+ # Corresponds to the JSON property `domain`
1232
+ # @return [String]
1233
+ attr_accessor :domain
1234
+
1137
1235
  # Title of the chunk.
1138
1236
  # Corresponds to the JSON property `title`
1139
1237
  # @return [String]
@@ -1150,6 +1248,7 @@ module Google
1150
1248
 
1151
1249
  # Update properties of this object
1152
1250
  def update!(**args)
1251
+ @domain = args[:domain] if args.key?(:domain)
1153
1252
  @title = args[:title] if args.key?(:title)
1154
1253
  @uri = args[:uri] if args.key?(:uri)
1155
1254
  end
@@ -1439,6 +1538,57 @@ module Google
1439
1538
  end
1440
1539
  end
1441
1540
 
1541
+ # A RagChunk includes the content of a chunk of a RagFile, and associated
1542
+ # metadata.
1543
+ class GoogleCloudAiplatformV1beta1RagChunk
1544
+ include Google::Apis::Core::Hashable
1545
+
1546
+ # Represents where the chunk starts and ends in the document.
1547
+ # Corresponds to the JSON property `pageSpan`
1548
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RagChunkPageSpan]
1549
+ attr_accessor :page_span
1550
+
1551
+ # The content of the chunk.
1552
+ # Corresponds to the JSON property `text`
1553
+ # @return [String]
1554
+ attr_accessor :text
1555
+
1556
+ def initialize(**args)
1557
+ update!(**args)
1558
+ end
1559
+
1560
+ # Update properties of this object
1561
+ def update!(**args)
1562
+ @page_span = args[:page_span] if args.key?(:page_span)
1563
+ @text = args[:text] if args.key?(:text)
1564
+ end
1565
+ end
1566
+
1567
+ # Represents where the chunk starts and ends in the document.
1568
+ class GoogleCloudAiplatformV1beta1RagChunkPageSpan
1569
+ include Google::Apis::Core::Hashable
1570
+
1571
+ # Page where chunk starts in the document. Inclusive. 1-indexed.
1572
+ # Corresponds to the JSON property `firstPage`
1573
+ # @return [Fixnum]
1574
+ attr_accessor :first_page
1575
+
1576
+ # Page where chunk ends in the document. Inclusive. 1-indexed.
1577
+ # Corresponds to the JSON property `lastPage`
1578
+ # @return [Fixnum]
1579
+ attr_accessor :last_page
1580
+
1581
+ def initialize(**args)
1582
+ update!(**args)
1583
+ end
1584
+
1585
+ # Update properties of this object
1586
+ def update!(**args)
1587
+ @first_page = args[:first_page] if args.key?(:first_page)
1588
+ @last_page = args[:last_page] if args.key?(:last_page)
1589
+ end
1590
+ end
1591
+
1442
1592
  # Specifies the context retrieval config.
1443
1593
  class GoogleCloudAiplatformV1beta1RagRetrievalConfig
1444
1594
  include Google::Apis::Core::Hashable
@@ -2137,6 +2287,13 @@ module Google
2137
2287
  # @return [String]
2138
2288
  attr_accessor :datastore
2139
2289
 
2290
+ # Optional. Fully-qualified Vertex AI Search engine resource ID. Format: `
2291
+ # projects/`project`/locations/`location`/collections/`collection`/engines/`
2292
+ # engine``
2293
+ # Corresponds to the JSON property `engine`
2294
+ # @return [String]
2295
+ attr_accessor :engine
2296
+
2140
2297
  def initialize(**args)
2141
2298
  update!(**args)
2142
2299
  end
@@ -2144,6 +2301,7 @@ module Google
2144
2301
  # Update properties of this object
2145
2302
  def update!(**args)
2146
2303
  @datastore = args[:datastore] if args.key?(:datastore)
2304
+ @engine = args[:engine] if args.key?(:engine)
2147
2305
  end
2148
2306
  end
2149
2307
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebasemlV2beta
18
18
  # Version of the google-apis-firebaseml_v2beta gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250223"
25
+ REVISION = "20250326"
26
26
  end
27
27
  end
28
28
  end
@@ -154,6 +154,12 @@ module Google
154
154
  include Google::Apis::Core::JsonObjectSupport
155
155
  end
156
156
 
157
+ class GoogleCloudAiplatformV1beta1GenerationConfigModelConfig
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
157
163
  class GoogleCloudAiplatformV1beta1GenerationConfigRoutingConfig
158
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
165
 
@@ -172,6 +178,12 @@ module Google
172
178
  include Google::Apis::Core::JsonObjectSupport
173
179
  end
174
180
 
181
+ class GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
175
187
  class GoogleCloudAiplatformV1beta1GoogleSearchRetrieval
176
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
189
 
@@ -244,6 +256,18 @@ module Google
244
256
  include Google::Apis::Core::JsonObjectSupport
245
257
  end
246
258
 
259
+ class GoogleCloudAiplatformV1beta1RagChunk
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
265
+ class GoogleCloudAiplatformV1beta1RagChunkPageSpan
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
247
271
  class GoogleCloudAiplatformV1beta1RagRetrievalConfig
248
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
273
 
@@ -537,6 +561,7 @@ module Google
537
561
  # @private
538
562
  class Representation < Google::Apis::Core::JsonRepresentation
539
563
  hash :args, as: 'args'
564
+ property :id, as: 'id'
540
565
  property :name, as: 'name'
541
566
  end
542
567
  end
@@ -564,6 +589,7 @@ module Google
564
589
  class GoogleCloudAiplatformV1beta1FunctionResponse
565
590
  # @private
566
591
  class Representation < Google::Apis::Core::JsonRepresentation
592
+ property :id, as: 'id'
567
593
  property :name, as: 'name'
568
594
  hash :response, as: 'response'
569
595
  end
@@ -626,10 +652,12 @@ module Google
626
652
  property :prompt_token_count, as: 'promptTokenCount'
627
653
  collection :prompt_tokens_details, as: 'promptTokensDetails', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount::Representation
628
654
 
655
+ property :thoughts_token_count, as: 'thoughtsTokenCount'
629
656
  property :tool_use_prompt_token_count, as: 'toolUsePromptTokenCount'
630
657
  collection :tool_use_prompt_tokens_details, as: 'toolUsePromptTokensDetails', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount::Representation
631
658
 
632
659
  property :total_token_count, as: 'totalTokenCount'
660
+ property :traffic_type, as: 'trafficType'
633
661
  end
634
662
  end
635
663
 
@@ -642,6 +670,8 @@ module Google
642
670
  property :logprobs, as: 'logprobs'
643
671
  property :max_output_tokens, as: 'maxOutputTokens'
644
672
  property :media_resolution, as: 'mediaResolution'
673
+ property :model_config, as: 'modelConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GenerationConfigModelConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GenerationConfigModelConfig::Representation
674
+
645
675
  property :presence_penalty, as: 'presencePenalty'
646
676
  property :response_logprobs, as: 'responseLogprobs'
647
677
  property :response_mime_type, as: 'responseMimeType'
@@ -655,11 +685,20 @@ module Google
655
685
 
656
686
  collection :stop_sequences, as: 'stopSequences'
657
687
  property :temperature, as: 'temperature'
688
+ property :thinking_config, as: 'thinkingConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig::Representation
689
+
658
690
  property :top_k, as: 'topK'
659
691
  property :top_p, as: 'topP'
660
692
  end
661
693
  end
662
694
 
695
+ class GoogleCloudAiplatformV1beta1GenerationConfigModelConfig
696
+ # @private
697
+ class Representation < Google::Apis::Core::JsonRepresentation
698
+ property :feature_selection_preference, as: 'featureSelectionPreference'
699
+ end
700
+ end
701
+
663
702
  class GoogleCloudAiplatformV1beta1GenerationConfigRoutingConfig
664
703
  # @private
665
704
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -684,6 +723,14 @@ module Google
684
723
  end
685
724
  end
686
725
 
726
+ class GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig
727
+ # @private
728
+ class Representation < Google::Apis::Core::JsonRepresentation
729
+ property :enable_thinking, as: 'enableThinking'
730
+ property :thinking_budget, as: 'thinkingBudget'
731
+ end
732
+ end
733
+
687
734
  class GoogleCloudAiplatformV1beta1GoogleSearchRetrieval
688
735
  # @private
689
736
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -705,6 +752,8 @@ module Google
705
752
  class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
706
753
  # @private
707
754
  class Representation < Google::Apis::Core::JsonRepresentation
755
+ property :rag_chunk, as: 'ragChunk', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RagChunk, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RagChunk::Representation
756
+
708
757
  property :text, as: 'text'
709
758
  property :title, as: 'title'
710
759
  property :uri, as: 'uri'
@@ -714,6 +763,7 @@ module Google
714
763
  class GoogleCloudAiplatformV1beta1GroundingChunkWeb
715
764
  # @private
716
765
  class Representation < Google::Apis::Core::JsonRepresentation
766
+ property :domain, as: 'domain'
717
767
  property :title, as: 'title'
718
768
  property :uri, as: 'uri'
719
769
  end
@@ -809,6 +859,23 @@ module Google
809
859
  end
810
860
  end
811
861
 
862
+ class GoogleCloudAiplatformV1beta1RagChunk
863
+ # @private
864
+ class Representation < Google::Apis::Core::JsonRepresentation
865
+ property :page_span, as: 'pageSpan', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RagChunkPageSpan, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RagChunkPageSpan::Representation
866
+
867
+ property :text, as: 'text'
868
+ end
869
+ end
870
+
871
+ class GoogleCloudAiplatformV1beta1RagChunkPageSpan
872
+ # @private
873
+ class Representation < Google::Apis::Core::JsonRepresentation
874
+ property :first_page, as: 'firstPage'
875
+ property :last_page, as: 'lastPage'
876
+ end
877
+ end
878
+
812
879
  class GoogleCloudAiplatformV1beta1RagRetrievalConfig
813
880
  # @private
814
881
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1011,6 +1078,7 @@ module Google
1011
1078
  # @private
1012
1079
  class Representation < Google::Apis::Core::JsonRepresentation
1013
1080
  property :datastore, as: 'datastore'
1081
+ property :engine, as: 'engine'
1014
1082
  end
1015
1083
  end
1016
1084
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseml_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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-firebaseml_v2beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.14.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.16.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseml_v2beta
62
62
  rdoc_options: []
63
63
  require_paths: