google-apis-firebaseml_v2beta 0.25.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: 1251db6d99ff2258bd0a8e6e054ebe42faaa3caa862c636d9c6fa37f9e4cf10e
4
- data.tar.gz: 1c01c6611bbb3c3853104453dd57baed2d8bd4511ee9ac2ef366fc226d7c0310
3
+ metadata.gz: b398345fee75e6b542d4a5c4d43f488e067985295ef739bc494ad58ceb611d28
4
+ data.tar.gz: 5f95ca28d977284ec84854380ed5d50540a7916080ad92c11037c9169a9266e6
5
5
  SHA512:
6
- metadata.gz: 227d51d505ed796b69849edef20e3ca0d5311058b8ec2514f2b3fc42f6b84e25f3030dbd22c6d6cf3afed3c86857d5056f6c6ab47eaa960c7338e1c484e73113
7
- data.tar.gz: bcf0bdd324c9ae6283a587158e8639ea8508b6604bfacedf60b0279a8d8c2a410d7fed16af141c3da00a01b50aa38e4c3b21f608eaf85a3a575106a188636f47
6
+ metadata.gz: 232939e0b51d4210a9a239552a0ef47a15137ac0ab9691afea4f9b6ca385cb0d1ea5f2339a0467715c189c019b48c1d83010f70f68d0cdaad1c4e9a8c2f49378
7
+ data.tar.gz: 7a276b901988e0df68f86e1869ce9fb6e15efb4faae954560831cd54ba3e846f5b79e73ff3965787ad1897bb1972684a25ef0ddc665bc3a4b1238f22889c4284
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.25.0 (2025-07-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20250715
@@ -1625,6 +1625,11 @@ module Google
1625
1625
  class GoogleCloudAiplatformV1beta1GroundingChunkMaps
1626
1626
  include Google::Apis::Core::Hashable
1627
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
+
1628
1633
  # This Place's resource name, in `places/`place_id`` format. Can be used to look
1629
1634
  # up the Place.
1630
1635
  # Corresponds to the JSON property `placeId`
@@ -1652,6 +1657,7 @@ module Google
1652
1657
 
1653
1658
  # Update properties of this object
1654
1659
  def update!(**args)
1660
+ @place_answer_sources = args[:place_answer_sources] if args.key?(:place_answer_sources)
1655
1661
  @place_id = args[:place_id] if args.key?(:place_id)
1656
1662
  @text = args[:text] if args.key?(:text)
1657
1663
  @title = args[:title] if args.key?(:title)
@@ -1659,6 +1665,107 @@ module Google
1659
1665
  end
1660
1666
  end
1661
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
+
1662
1769
  # Chunk from context retrieved by the retrieval tools.
1663
1770
  class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
1664
1771
  include Google::Apis::Core::Hashable
@@ -2716,11 +2823,6 @@ module Google
2716
2823
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution]
2717
2824
  attr_accessor :code_execution
2718
2825
 
2719
- # Tool to support computer use.
2720
- # Corresponds to the JSON property `computerUse`
2721
- # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse]
2722
- attr_accessor :computer_use
2723
-
2724
2826
  # Tool to search public web data, powered by Vertex AI Search and Sec4
2725
2827
  # compliance.
2726
2828
  # Corresponds to the JSON property `enterpriseWebSearch`
@@ -2770,7 +2872,6 @@ module Google
2770
2872
  # Update properties of this object
2771
2873
  def update!(**args)
2772
2874
  @code_execution = args[:code_execution] if args.key?(:code_execution)
2773
- @computer_use = args[:computer_use] if args.key?(:computer_use)
2774
2875
  @enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
2775
2876
  @function_declarations = args[:function_declarations] if args.key?(:function_declarations)
2776
2877
  @google_maps = args[:google_maps] if args.key?(:google_maps)
@@ -2796,25 +2897,6 @@ module Google
2796
2897
  end
2797
2898
  end
2798
2899
 
2799
- # Tool to support computer use.
2800
- class GoogleCloudAiplatformV1beta1ToolComputerUse
2801
- include Google::Apis::Core::Hashable
2802
-
2803
- # Required. The environment being operated.
2804
- # Corresponds to the JSON property `environment`
2805
- # @return [String]
2806
- attr_accessor :environment
2807
-
2808
- def initialize(**args)
2809
- update!(**args)
2810
- end
2811
-
2812
- # Update properties of this object
2813
- def update!(**args)
2814
- @environment = args[:environment] if args.key?(:environment)
2815
- end
2816
- end
2817
-
2818
2900
  # Tool config. This config is shared for all tools provided in the request.
2819
2901
  class GoogleCloudAiplatformV1beta1ToolConfig
2820
2902
  include Google::Apis::Core::Hashable
@@ -3086,6 +3168,12 @@ module Google
3086
3168
  # @return [String]
3087
3169
  attr_accessor :end_offset
3088
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
+
3089
3177
  # Optional. The start offset of the video.
3090
3178
  # Corresponds to the JSON property `startOffset`
3091
3179
  # @return [String]
@@ -3098,6 +3186,7 @@ module Google
3098
3186
  # Update properties of this object
3099
3187
  def update!(**args)
3100
3188
  @end_offset = args[:end_offset] if args.key?(:end_offset)
3189
+ @fps = args[:fps] if args.key?(:fps)
3101
3190
  @start_offset = args[:start_offset] if args.key?(:start_offset)
3102
3191
  end
3103
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.25.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 = "20250715"
25
+ REVISION = "20250723"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,24 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
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
+
277
295
  class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
278
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
297
 
@@ -448,12 +466,6 @@ module Google
448
466
  include Google::Apis::Core::JsonObjectSupport
449
467
  end
450
468
 
451
- class GoogleCloudAiplatformV1beta1ToolComputerUse
452
- class Representation < Google::Apis::Core::JsonRepresentation; end
453
-
454
- include Google::Apis::Core::JsonObjectSupport
455
- end
456
-
457
469
  class GoogleCloudAiplatformV1beta1ToolConfig
458
470
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
471
 
@@ -982,6 +994,8 @@ module Google
982
994
  class GoogleCloudAiplatformV1beta1GroundingChunkMaps
983
995
  # @private
984
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
+
985
999
  property :place_id, as: 'placeId'
986
1000
  property :text, as: 'text'
987
1001
  property :title, as: 'title'
@@ -989,6 +1003,36 @@ module Google
989
1003
  end
990
1004
  end
991
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
+
992
1036
  class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
993
1037
  # @private
994
1038
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1289,8 +1333,6 @@ module Google
1289
1333
  class Representation < Google::Apis::Core::JsonRepresentation
1290
1334
  property :code_execution, as: 'codeExecution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution::Representation
1291
1335
 
1292
- property :computer_use, as: 'computerUse', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse::Representation
1293
-
1294
1336
  property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch::Representation
1295
1337
 
1296
1338
  collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration::Representation
@@ -1314,13 +1356,6 @@ module Google
1314
1356
  end
1315
1357
  end
1316
1358
 
1317
- class GoogleCloudAiplatformV1beta1ToolComputerUse
1318
- # @private
1319
- class Representation < Google::Apis::Core::JsonRepresentation
1320
- property :environment, as: 'environment'
1321
- end
1322
- end
1323
-
1324
1359
  class GoogleCloudAiplatformV1beta1ToolConfig
1325
1360
  # @private
1326
1361
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1405,6 +1440,7 @@ module Google
1405
1440
  # @private
1406
1441
  class Representation < Google::Apis::Core::JsonRepresentation
1407
1442
  property :end_offset, as: 'endOffset'
1443
+ property :fps, as: 'fps'
1408
1444
  property :start_offset, as: 'startOffset'
1409
1445
  end
1410
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.25.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.25.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: