google-apis-firebaseml_v2beta 0.24.0 → 0.26.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: af0e10a88ec3416df9889f0285958556d3d0bc7b52b6a7af0d00b9a4aa831bf5
4
- data.tar.gz: a0629e645070c15bab1bee90c0ae9148d65cd0cebadc6033f897ec676e099fa1
3
+ metadata.gz: b398345fee75e6b542d4a5c4d43f488e067985295ef739bc494ad58ceb611d28
4
+ data.tar.gz: 5f95ca28d977284ec84854380ed5d50540a7916080ad92c11037c9169a9266e6
5
5
  SHA512:
6
- metadata.gz: 289610583eb8f7bd3cb60df8e126f4a06561a0f377e90ad9b6544d5bf436302197e6fa56476c62df4a39f0870763cd3b6668a4c4c7537c98fcd588500e49d563
7
- data.tar.gz: 4aa90713479acd461a42e31f42afe09237a393e54e4698de48e247811267fcf46094856b38ab0953964599abab4beb99df80d418c1aafe45d1e506da38be38ce
6
+ metadata.gz: 232939e0b51d4210a9a239552a0ef47a15137ac0ab9691afea4f9b6ca385cb0d1ea5f2339a0467715c189c019b48c1d83010f70f68d0cdaad1c4e9a8c2f49378
7
+ data.tar.gz: 7a276b901988e0df68f86e1869ce9fb6e15efb4faae954560831cd54ba3e846f5b79e73ff3965787ad1897bb1972684a25ef0ddc665bc3a4b1238f22889c4284
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firebaseml_v2beta
2
2
 
3
+ ### v0.26.0 (2025-07-27)
4
+
5
+ * Regenerated from discovery document revision 20250723
6
+
7
+ ### v0.25.0 (2025-07-20)
8
+
9
+ * Regenerated from discovery document revision 20250715
10
+
3
11
  ### v0.24.0 (2025-06-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20250618
@@ -1545,6 +1545,32 @@ module Google
1545
1545
  end
1546
1546
  end
1547
1547
 
1548
+ # Tool to retrieve public maps data for grounding, powered by Google.
1549
+ class GoogleCloudAiplatformV1beta1GoogleMaps
1550
+ include Google::Apis::Core::Hashable
1551
+
1552
+ # The generic reusable api auth config. Deprecated. Please use AuthConfig (
1553
+ # google/cloud/aiplatform/master/auth.proto) instead.
1554
+ # Corresponds to the JSON property `apiAuth`
1555
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ApiAuth]
1556
+ attr_accessor :api_auth
1557
+
1558
+ # Auth configuration to run the extension.
1559
+ # Corresponds to the JSON property `authConfig`
1560
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AuthConfig]
1561
+ attr_accessor :auth_config
1562
+
1563
+ def initialize(**args)
1564
+ update!(**args)
1565
+ end
1566
+
1567
+ # Update properties of this object
1568
+ def update!(**args)
1569
+ @api_auth = args[:api_auth] if args.key?(:api_auth)
1570
+ @auth_config = args[:auth_config] if args.key?(:auth_config)
1571
+ end
1572
+ end
1573
+
1548
1574
  # Tool to retrieve public web data for grounding, powered by Google.
1549
1575
  class GoogleCloudAiplatformV1beta1GoogleSearchRetrieval
1550
1576
  include Google::Apis::Core::Hashable
@@ -1568,6 +1594,11 @@ module Google
1568
1594
  class GoogleCloudAiplatformV1beta1GroundingChunk
1569
1595
  include Google::Apis::Core::Hashable
1570
1596
 
1597
+ # Chunk from Google Maps.
1598
+ # Corresponds to the JSON property `maps`
1599
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMaps]
1600
+ attr_accessor :maps
1601
+
1571
1602
  # Chunk from context retrieved by the retrieval tools.
1572
1603
  # Corresponds to the JSON property `retrievedContext`
1573
1604
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext]
@@ -1584,11 +1615,157 @@ module Google
1584
1615
 
1585
1616
  # Update properties of this object
1586
1617
  def update!(**args)
1618
+ @maps = args[:maps] if args.key?(:maps)
1587
1619
  @retrieved_context = args[:retrieved_context] if args.key?(:retrieved_context)
1588
1620
  @web = args[:web] if args.key?(:web)
1589
1621
  end
1590
1622
  end
1591
1623
 
1624
+ # Chunk from Google Maps.
1625
+ class GoogleCloudAiplatformV1beta1GroundingChunkMaps
1626
+ include Google::Apis::Core::Hashable
1627
+
1628
+ # Sources used to generate the place answer.
1629
+ # Corresponds to the JSON property `placeAnswerSources`
1630
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources]
1631
+ attr_accessor :place_answer_sources
1632
+
1633
+ # This Place's resource name, in `places/`place_id`` format. Can be used to look
1634
+ # up the Place.
1635
+ # Corresponds to the JSON property `placeId`
1636
+ # @return [String]
1637
+ attr_accessor :place_id
1638
+
1639
+ # Text of the chunk.
1640
+ # Corresponds to the JSON property `text`
1641
+ # @return [String]
1642
+ attr_accessor :text
1643
+
1644
+ # Title of the chunk.
1645
+ # Corresponds to the JSON property `title`
1646
+ # @return [String]
1647
+ attr_accessor :title
1648
+
1649
+ # URI reference of the chunk.
1650
+ # Corresponds to the JSON property `uri`
1651
+ # @return [String]
1652
+ attr_accessor :uri
1653
+
1654
+ def initialize(**args)
1655
+ update!(**args)
1656
+ end
1657
+
1658
+ # Update properties of this object
1659
+ def update!(**args)
1660
+ @place_answer_sources = args[:place_answer_sources] if args.key?(:place_answer_sources)
1661
+ @place_id = args[:place_id] if args.key?(:place_id)
1662
+ @text = args[:text] if args.key?(:text)
1663
+ @title = args[:title] if args.key?(:title)
1664
+ @uri = args[:uri] if args.key?(:uri)
1665
+ end
1666
+ end
1667
+
1668
+ # Sources used to generate the place answer.
1669
+ class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources
1670
+ include Google::Apis::Core::Hashable
1671
+
1672
+ # A link where users can flag a problem with the generated answer.
1673
+ # Corresponds to the JSON property `flagContentUri`
1674
+ # @return [String]
1675
+ attr_accessor :flag_content_uri
1676
+
1677
+ # Snippets of reviews that are used to generate the answer.
1678
+ # Corresponds to the JSON property `reviewSnippets`
1679
+ # @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet>]
1680
+ attr_accessor :review_snippets
1681
+
1682
+ def initialize(**args)
1683
+ update!(**args)
1684
+ end
1685
+
1686
+ # Update properties of this object
1687
+ def update!(**args)
1688
+ @flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
1689
+ @review_snippets = args[:review_snippets] if args.key?(:review_snippets)
1690
+ end
1691
+ end
1692
+
1693
+ # Author attribution for a photo or review.
1694
+ class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
1695
+ include Google::Apis::Core::Hashable
1696
+
1697
+ # Name of the author of the Photo or Review.
1698
+ # Corresponds to the JSON property `displayName`
1699
+ # @return [String]
1700
+ attr_accessor :display_name
1701
+
1702
+ # Profile photo URI of the author of the Photo or Review.
1703
+ # Corresponds to the JSON property `photoUri`
1704
+ # @return [String]
1705
+ attr_accessor :photo_uri
1706
+
1707
+ # URI of the author of the Photo or Review.
1708
+ # Corresponds to the JSON property `uri`
1709
+ # @return [String]
1710
+ attr_accessor :uri
1711
+
1712
+ def initialize(**args)
1713
+ update!(**args)
1714
+ end
1715
+
1716
+ # Update properties of this object
1717
+ def update!(**args)
1718
+ @display_name = args[:display_name] if args.key?(:display_name)
1719
+ @photo_uri = args[:photo_uri] if args.key?(:photo_uri)
1720
+ @uri = args[:uri] if args.key?(:uri)
1721
+ end
1722
+ end
1723
+
1724
+ # Encapsulates a review snippet.
1725
+ class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
1726
+ include Google::Apis::Core::Hashable
1727
+
1728
+ # Author attribution for a photo or review.
1729
+ # Corresponds to the JSON property `authorAttribution`
1730
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution]
1731
+ attr_accessor :author_attribution
1732
+
1733
+ # A link where users can flag a problem with the review.
1734
+ # Corresponds to the JSON property `flagContentUri`
1735
+ # @return [String]
1736
+ attr_accessor :flag_content_uri
1737
+
1738
+ # A link to show the review on Google Maps.
1739
+ # Corresponds to the JSON property `googleMapsUri`
1740
+ # @return [String]
1741
+ attr_accessor :google_maps_uri
1742
+
1743
+ # A string of formatted recent time, expressing the review time relative to the
1744
+ # current time in a form appropriate for the language and country.
1745
+ # Corresponds to the JSON property `relativePublishTimeDescription`
1746
+ # @return [String]
1747
+ attr_accessor :relative_publish_time_description
1748
+
1749
+ # A reference representing this place review which may be used to look up this
1750
+ # place review again.
1751
+ # Corresponds to the JSON property `review`
1752
+ # @return [String]
1753
+ attr_accessor :review
1754
+
1755
+ def initialize(**args)
1756
+ update!(**args)
1757
+ end
1758
+
1759
+ # Update properties of this object
1760
+ def update!(**args)
1761
+ @author_attribution = args[:author_attribution] if args.key?(:author_attribution)
1762
+ @flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
1763
+ @google_maps_uri = args[:google_maps_uri] if args.key?(:google_maps_uri)
1764
+ @relative_publish_time_description = args[:relative_publish_time_description] if args.key?(:relative_publish_time_description)
1765
+ @review = args[:review] if args.key?(:review)
1766
+ end
1767
+ end
1768
+
1592
1769
  # Chunk from context retrieved by the retrieval tools.
1593
1770
  class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
1594
1771
  include Google::Apis::Core::Hashable
@@ -1662,6 +1839,13 @@ module Google
1662
1839
  class GoogleCloudAiplatformV1beta1GroundingMetadata
1663
1840
  include Google::Apis::Core::Hashable
1664
1841
 
1842
+ # Optional. Output only. Resource name of the Google Maps widget context token
1843
+ # to be used with the PlacesContextElement widget to render contextual data.
1844
+ # This is populated only for Google Maps grounding.
1845
+ # Corresponds to the JSON property `googleMapsWidgetContextToken`
1846
+ # @return [String]
1847
+ attr_accessor :google_maps_widget_context_token
1848
+
1665
1849
  # List of supporting references retrieved from specified grounding source.
1666
1850
  # Corresponds to the JSON property `groundingChunks`
1667
1851
  # @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunk>]
@@ -1698,6 +1882,7 @@ module Google
1698
1882
 
1699
1883
  # Update properties of this object
1700
1884
  def update!(**args)
1885
+ @google_maps_widget_context_token = args[:google_maps_widget_context_token] if args.key?(:google_maps_widget_context_token)
1701
1886
  @grounding_chunks = args[:grounding_chunks] if args.key?(:grounding_chunks)
1702
1887
  @grounding_supports = args[:grounding_supports] if args.key?(:grounding_supports)
1703
1888
  @retrieval_metadata = args[:retrieval_metadata] if args.key?(:retrieval_metadata)
@@ -2638,11 +2823,6 @@ module Google
2638
2823
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution]
2639
2824
  attr_accessor :code_execution
2640
2825
 
2641
- # Tool to support computer use.
2642
- # Corresponds to the JSON property `computerUse`
2643
- # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse]
2644
- attr_accessor :computer_use
2645
-
2646
2826
  # Tool to search public web data, powered by Vertex AI Search and Sec4
2647
2827
  # compliance.
2648
2828
  # Corresponds to the JSON property `enterpriseWebSearch`
@@ -2654,11 +2834,16 @@ module Google
2654
2834
  # subset of these functions by populating FunctionCall in the response. User
2655
2835
  # should provide a FunctionResponse for each function call in the next turn.
2656
2836
  # Based on the function responses, Model will generate the final response back
2657
- # to the user. Maximum 128 function declarations can be provided.
2837
+ # to the user. Maximum 512 function declarations can be provided.
2658
2838
  # Corresponds to the JSON property `functionDeclarations`
2659
2839
  # @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration>]
2660
2840
  attr_accessor :function_declarations
2661
2841
 
2842
+ # Tool to retrieve public maps data for grounding, powered by Google.
2843
+ # Corresponds to the JSON property `googleMaps`
2844
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GoogleMaps]
2845
+ attr_accessor :google_maps
2846
+
2662
2847
  # GoogleSearch tool type. Tool to support Google Search in Model. Powered by
2663
2848
  # Google.
2664
2849
  # Corresponds to the JSON property `googleSearch`
@@ -2687,9 +2872,9 @@ module Google
2687
2872
  # Update properties of this object
2688
2873
  def update!(**args)
2689
2874
  @code_execution = args[:code_execution] if args.key?(:code_execution)
2690
- @computer_use = args[:computer_use] if args.key?(:computer_use)
2691
2875
  @enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
2692
2876
  @function_declarations = args[:function_declarations] if args.key?(:function_declarations)
2877
+ @google_maps = args[:google_maps] if args.key?(:google_maps)
2693
2878
  @google_search = args[:google_search] if args.key?(:google_search)
2694
2879
  @google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
2695
2880
  @retrieval = args[:retrieval] if args.key?(:retrieval)
@@ -2712,25 +2897,6 @@ module Google
2712
2897
  end
2713
2898
  end
2714
2899
 
2715
- # Tool to support computer use.
2716
- class GoogleCloudAiplatformV1beta1ToolComputerUse
2717
- include Google::Apis::Core::Hashable
2718
-
2719
- # Required. The environment being operated.
2720
- # Corresponds to the JSON property `environment`
2721
- # @return [String]
2722
- attr_accessor :environment
2723
-
2724
- def initialize(**args)
2725
- update!(**args)
2726
- end
2727
-
2728
- # Update properties of this object
2729
- def update!(**args)
2730
- @environment = args[:environment] if args.key?(:environment)
2731
- end
2732
- end
2733
-
2734
2900
  # Tool config. This config is shared for all tools provided in the request.
2735
2901
  class GoogleCloudAiplatformV1beta1ToolConfig
2736
2902
  include Google::Apis::Core::Hashable
@@ -3002,6 +3168,12 @@ module Google
3002
3168
  # @return [String]
3003
3169
  attr_accessor :end_offset
3004
3170
 
3171
+ # Optional. The frame rate of the video sent to the model. If not specified, the
3172
+ # default value will be 1.0. The fps range is (0.0, 24.0].
3173
+ # Corresponds to the JSON property `fps`
3174
+ # @return [Float]
3175
+ attr_accessor :fps
3176
+
3005
3177
  # Optional. The start offset of the video.
3006
3178
  # Corresponds to the JSON property `startOffset`
3007
3179
  # @return [String]
@@ -3014,6 +3186,7 @@ module Google
3014
3186
  # Update properties of this object
3015
3187
  def update!(**args)
3016
3188
  @end_offset = args[:end_offset] if args.key?(:end_offset)
3189
+ @fps = args[:fps] if args.key?(:fps)
3017
3190
  @start_offset = args[:start_offset] if args.key?(:start_offset)
3018
3191
  end
3019
3192
  end
@@ -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.24.0"
19
+ GEM_VERSION = "0.26.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 = "20250618"
25
+ REVISION = "20250723"
26
26
  end
27
27
  end
28
28
  end
@@ -250,6 +250,12 @@ module Google
250
250
  include Google::Apis::Core::JsonObjectSupport
251
251
  end
252
252
 
253
+ class GoogleCloudAiplatformV1beta1GoogleMaps
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
253
259
  class GoogleCloudAiplatformV1beta1GoogleSearchRetrieval
254
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
261
 
@@ -262,6 +268,30 @@ module Google
262
268
  include Google::Apis::Core::JsonObjectSupport
263
269
  end
264
270
 
271
+ class GoogleCloudAiplatformV1beta1GroundingChunkMaps
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
277
+ class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
283
+ class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
289
+ class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
265
295
  class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
266
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
297
 
@@ -436,12 +466,6 @@ module Google
436
466
  include Google::Apis::Core::JsonObjectSupport
437
467
  end
438
468
 
439
- class GoogleCloudAiplatformV1beta1ToolComputerUse
440
- class Representation < Google::Apis::Core::JsonRepresentation; end
441
-
442
- include Google::Apis::Core::JsonObjectSupport
443
- end
444
-
445
469
  class GoogleCloudAiplatformV1beta1ToolConfig
446
470
  class Representation < Google::Apis::Core::JsonRepresentation; end
447
471
 
@@ -937,6 +961,16 @@ module Google
937
961
  end
938
962
  end
939
963
 
964
+ class GoogleCloudAiplatformV1beta1GoogleMaps
965
+ # @private
966
+ class Representation < Google::Apis::Core::JsonRepresentation
967
+ property :api_auth, as: 'apiAuth', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ApiAuth, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ApiAuth::Representation
968
+
969
+ property :auth_config, as: 'authConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AuthConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AuthConfig::Representation
970
+
971
+ end
972
+ end
973
+
940
974
  class GoogleCloudAiplatformV1beta1GoogleSearchRetrieval
941
975
  # @private
942
976
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -948,6 +982,8 @@ module Google
948
982
  class GoogleCloudAiplatformV1beta1GroundingChunk
949
983
  # @private
950
984
  class Representation < Google::Apis::Core::JsonRepresentation
985
+ property :maps, as: 'maps', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMaps, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMaps::Representation
986
+
951
987
  property :retrieved_context, as: 'retrievedContext', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext::Representation
952
988
 
953
989
  property :web, as: 'web', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkWeb, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkWeb::Representation
@@ -955,6 +991,48 @@ module Google
955
991
  end
956
992
  end
957
993
 
994
+ class GoogleCloudAiplatformV1beta1GroundingChunkMaps
995
+ # @private
996
+ class Representation < Google::Apis::Core::JsonRepresentation
997
+ property :place_answer_sources, as: 'placeAnswerSources', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources::Representation
998
+
999
+ property :place_id, as: 'placeId'
1000
+ property :text, as: 'text'
1001
+ property :title, as: 'title'
1002
+ property :uri, as: 'uri'
1003
+ end
1004
+ end
1005
+
1006
+ class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources
1007
+ # @private
1008
+ class Representation < Google::Apis::Core::JsonRepresentation
1009
+ property :flag_content_uri, as: 'flagContentUri'
1010
+ collection :review_snippets, as: 'reviewSnippets', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet::Representation
1011
+
1012
+ end
1013
+ end
1014
+
1015
+ class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
1016
+ # @private
1017
+ class Representation < Google::Apis::Core::JsonRepresentation
1018
+ property :display_name, as: 'displayName'
1019
+ property :photo_uri, as: 'photoUri'
1020
+ property :uri, as: 'uri'
1021
+ end
1022
+ end
1023
+
1024
+ class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
1025
+ # @private
1026
+ class Representation < Google::Apis::Core::JsonRepresentation
1027
+ property :author_attribution, as: 'authorAttribution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution::Representation
1028
+
1029
+ property :flag_content_uri, as: 'flagContentUri'
1030
+ property :google_maps_uri, as: 'googleMapsUri'
1031
+ property :relative_publish_time_description, as: 'relativePublishTimeDescription'
1032
+ property :review, as: 'review'
1033
+ end
1034
+ end
1035
+
958
1036
  class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
959
1037
  # @private
960
1038
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -978,6 +1056,7 @@ module Google
978
1056
  class GoogleCloudAiplatformV1beta1GroundingMetadata
979
1057
  # @private
980
1058
  class Representation < Google::Apis::Core::JsonRepresentation
1059
+ property :google_maps_widget_context_token, as: 'googleMapsWidgetContextToken'
981
1060
  collection :grounding_chunks, as: 'groundingChunks', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunk, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunk::Representation
982
1061
 
983
1062
  collection :grounding_supports, as: 'groundingSupports', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingSupport, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingSupport::Representation
@@ -1254,12 +1333,12 @@ module Google
1254
1333
  class Representation < Google::Apis::Core::JsonRepresentation
1255
1334
  property :code_execution, as: 'codeExecution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution::Representation
1256
1335
 
1257
- property :computer_use, as: 'computerUse', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse::Representation
1258
-
1259
1336
  property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch::Representation
1260
1337
 
1261
1338
  collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration::Representation
1262
1339
 
1340
+ property :google_maps, as: 'googleMaps', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GoogleMaps, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GoogleMaps::Representation
1341
+
1263
1342
  property :google_search, as: 'googleSearch', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolGoogleSearch, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolGoogleSearch::Representation
1264
1343
 
1265
1344
  property :google_search_retrieval, as: 'googleSearchRetrieval', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GoogleSearchRetrieval, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GoogleSearchRetrieval::Representation
@@ -1277,13 +1356,6 @@ module Google
1277
1356
  end
1278
1357
  end
1279
1358
 
1280
- class GoogleCloudAiplatformV1beta1ToolComputerUse
1281
- # @private
1282
- class Representation < Google::Apis::Core::JsonRepresentation
1283
- property :environment, as: 'environment'
1284
- end
1285
- end
1286
-
1287
1359
  class GoogleCloudAiplatformV1beta1ToolConfig
1288
1360
  # @private
1289
1361
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1368,6 +1440,7 @@ module Google
1368
1440
  # @private
1369
1441
  class Representation < Google::Apis::Core::JsonRepresentation
1370
1442
  property :end_offset, as: 'endOffset'
1443
+ property :fps, as: 'fps'
1371
1444
  property :start_offset, as: 'startOffset'
1372
1445
  end
1373
1446
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseml_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.26.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-firebaseml_v2beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.24.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.26.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: