google-apis-firebaseml_v2beta 0.25.0 → 0.27.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: f3234480556c75c49a9bdf15dc81a07783222e107f072978762f98543854aa42
|
4
|
+
data.tar.gz: a2e4793b09ea0f39f2c54af5bc44a9d703a4af30370b00f5ed7e2909f6f69a33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a06a0810ccfe8b4cac16743fe0ada1741c14b15b95f718518b6c719581768e31dcb7f8b166e0900072a83930164e50619379131099c63f4d840163f2078cae4
|
7
|
+
data.tar.gz: 7f4b6df7aa0a19e18db8c33c187522c376e71cd056052f6bd50133fb1e5ed29334083c5c6b37ef0723b18926af1b9a25a2f2e97be6f08f27572d91d6ffb6ef8d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebaseml_v2beta
|
2
2
|
|
3
|
+
### v0.27.0 (2025-08-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250727
|
6
|
+
|
7
|
+
### v0.26.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250723
|
10
|
+
|
3
11
|
### v0.25.0 (2025-07-20)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250715
|
@@ -682,12 +682,19 @@ module Google
|
|
682
682
|
class GoogleCloudAiplatformV1beta1EnterpriseWebSearch
|
683
683
|
include Google::Apis::Core::Hashable
|
684
684
|
|
685
|
+
# Optional. List of domains to be excluded from the search results. The default
|
686
|
+
# limit is 2000 domains.
|
687
|
+
# Corresponds to the JSON property `excludeDomains`
|
688
|
+
# @return [Array<String>]
|
689
|
+
attr_accessor :exclude_domains
|
690
|
+
|
685
691
|
def initialize(**args)
|
686
692
|
update!(**args)
|
687
693
|
end
|
688
694
|
|
689
695
|
# Update properties of this object
|
690
696
|
def update!(**args)
|
697
|
+
@exclude_domains = args[:exclude_domains] if args.key?(:exclude_domains)
|
691
698
|
end
|
692
699
|
end
|
693
700
|
|
@@ -1625,6 +1632,11 @@ module Google
|
|
1625
1632
|
class GoogleCloudAiplatformV1beta1GroundingChunkMaps
|
1626
1633
|
include Google::Apis::Core::Hashable
|
1627
1634
|
|
1635
|
+
# Sources used to generate the place answer.
|
1636
|
+
# Corresponds to the JSON property `placeAnswerSources`
|
1637
|
+
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources]
|
1638
|
+
attr_accessor :place_answer_sources
|
1639
|
+
|
1628
1640
|
# This Place's resource name, in `places/`place_id`` format. Can be used to look
|
1629
1641
|
# up the Place.
|
1630
1642
|
# Corresponds to the JSON property `placeId`
|
@@ -1652,6 +1664,7 @@ module Google
|
|
1652
1664
|
|
1653
1665
|
# Update properties of this object
|
1654
1666
|
def update!(**args)
|
1667
|
+
@place_answer_sources = args[:place_answer_sources] if args.key?(:place_answer_sources)
|
1655
1668
|
@place_id = args[:place_id] if args.key?(:place_id)
|
1656
1669
|
@text = args[:text] if args.key?(:text)
|
1657
1670
|
@title = args[:title] if args.key?(:title)
|
@@ -1659,6 +1672,107 @@ module Google
|
|
1659
1672
|
end
|
1660
1673
|
end
|
1661
1674
|
|
1675
|
+
# Sources used to generate the place answer.
|
1676
|
+
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources
|
1677
|
+
include Google::Apis::Core::Hashable
|
1678
|
+
|
1679
|
+
# A link where users can flag a problem with the generated answer.
|
1680
|
+
# Corresponds to the JSON property `flagContentUri`
|
1681
|
+
# @return [String]
|
1682
|
+
attr_accessor :flag_content_uri
|
1683
|
+
|
1684
|
+
# Snippets of reviews that are used to generate the answer.
|
1685
|
+
# Corresponds to the JSON property `reviewSnippets`
|
1686
|
+
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet>]
|
1687
|
+
attr_accessor :review_snippets
|
1688
|
+
|
1689
|
+
def initialize(**args)
|
1690
|
+
update!(**args)
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
# Update properties of this object
|
1694
|
+
def update!(**args)
|
1695
|
+
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
1696
|
+
@review_snippets = args[:review_snippets] if args.key?(:review_snippets)
|
1697
|
+
end
|
1698
|
+
end
|
1699
|
+
|
1700
|
+
# Author attribution for a photo or review.
|
1701
|
+
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
|
1702
|
+
include Google::Apis::Core::Hashable
|
1703
|
+
|
1704
|
+
# Name of the author of the Photo or Review.
|
1705
|
+
# Corresponds to the JSON property `displayName`
|
1706
|
+
# @return [String]
|
1707
|
+
attr_accessor :display_name
|
1708
|
+
|
1709
|
+
# Profile photo URI of the author of the Photo or Review.
|
1710
|
+
# Corresponds to the JSON property `photoUri`
|
1711
|
+
# @return [String]
|
1712
|
+
attr_accessor :photo_uri
|
1713
|
+
|
1714
|
+
# URI of the author of the Photo or Review.
|
1715
|
+
# Corresponds to the JSON property `uri`
|
1716
|
+
# @return [String]
|
1717
|
+
attr_accessor :uri
|
1718
|
+
|
1719
|
+
def initialize(**args)
|
1720
|
+
update!(**args)
|
1721
|
+
end
|
1722
|
+
|
1723
|
+
# Update properties of this object
|
1724
|
+
def update!(**args)
|
1725
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1726
|
+
@photo_uri = args[:photo_uri] if args.key?(:photo_uri)
|
1727
|
+
@uri = args[:uri] if args.key?(:uri)
|
1728
|
+
end
|
1729
|
+
end
|
1730
|
+
|
1731
|
+
# Encapsulates a review snippet.
|
1732
|
+
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
1733
|
+
include Google::Apis::Core::Hashable
|
1734
|
+
|
1735
|
+
# Author attribution for a photo or review.
|
1736
|
+
# Corresponds to the JSON property `authorAttribution`
|
1737
|
+
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution]
|
1738
|
+
attr_accessor :author_attribution
|
1739
|
+
|
1740
|
+
# A link where users can flag a problem with the review.
|
1741
|
+
# Corresponds to the JSON property `flagContentUri`
|
1742
|
+
# @return [String]
|
1743
|
+
attr_accessor :flag_content_uri
|
1744
|
+
|
1745
|
+
# A link to show the review on Google Maps.
|
1746
|
+
# Corresponds to the JSON property `googleMapsUri`
|
1747
|
+
# @return [String]
|
1748
|
+
attr_accessor :google_maps_uri
|
1749
|
+
|
1750
|
+
# A string of formatted recent time, expressing the review time relative to the
|
1751
|
+
# current time in a form appropriate for the language and country.
|
1752
|
+
# Corresponds to the JSON property `relativePublishTimeDescription`
|
1753
|
+
# @return [String]
|
1754
|
+
attr_accessor :relative_publish_time_description
|
1755
|
+
|
1756
|
+
# A reference representing this place review which may be used to look up this
|
1757
|
+
# place review again.
|
1758
|
+
# Corresponds to the JSON property `review`
|
1759
|
+
# @return [String]
|
1760
|
+
attr_accessor :review
|
1761
|
+
|
1762
|
+
def initialize(**args)
|
1763
|
+
update!(**args)
|
1764
|
+
end
|
1765
|
+
|
1766
|
+
# Update properties of this object
|
1767
|
+
def update!(**args)
|
1768
|
+
@author_attribution = args[:author_attribution] if args.key?(:author_attribution)
|
1769
|
+
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
1770
|
+
@google_maps_uri = args[:google_maps_uri] if args.key?(:google_maps_uri)
|
1771
|
+
@relative_publish_time_description = args[:relative_publish_time_description] if args.key?(:relative_publish_time_description)
|
1772
|
+
@review = args[:review] if args.key?(:review)
|
1773
|
+
end
|
1774
|
+
end
|
1775
|
+
|
1662
1776
|
# Chunk from context retrieved by the retrieval tools.
|
1663
1777
|
class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
|
1664
1778
|
include Google::Apis::Core::Hashable
|
@@ -2716,11 +2830,6 @@ module Google
|
|
2716
2830
|
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution]
|
2717
2831
|
attr_accessor :code_execution
|
2718
2832
|
|
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
2833
|
# Tool to search public web data, powered by Vertex AI Search and Sec4
|
2725
2834
|
# compliance.
|
2726
2835
|
# Corresponds to the JSON property `enterpriseWebSearch`
|
@@ -2770,7 +2879,6 @@ module Google
|
|
2770
2879
|
# Update properties of this object
|
2771
2880
|
def update!(**args)
|
2772
2881
|
@code_execution = args[:code_execution] if args.key?(:code_execution)
|
2773
|
-
@computer_use = args[:computer_use] if args.key?(:computer_use)
|
2774
2882
|
@enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
|
2775
2883
|
@function_declarations = args[:function_declarations] if args.key?(:function_declarations)
|
2776
2884
|
@google_maps = args[:google_maps] if args.key?(:google_maps)
|
@@ -2796,25 +2904,6 @@ module Google
|
|
2796
2904
|
end
|
2797
2905
|
end
|
2798
2906
|
|
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
2907
|
# Tool config. This config is shared for all tools provided in the request.
|
2819
2908
|
class GoogleCloudAiplatformV1beta1ToolConfig
|
2820
2909
|
include Google::Apis::Core::Hashable
|
@@ -2845,12 +2934,19 @@ module Google
|
|
2845
2934
|
class GoogleCloudAiplatformV1beta1ToolGoogleSearch
|
2846
2935
|
include Google::Apis::Core::Hashable
|
2847
2936
|
|
2937
|
+
# Optional. List of domains to be excluded from the search results. The default
|
2938
|
+
# limit is 2000 domains. Example: ["amazon.com", "facebook.com"].
|
2939
|
+
# Corresponds to the JSON property `excludeDomains`
|
2940
|
+
# @return [Array<String>]
|
2941
|
+
attr_accessor :exclude_domains
|
2942
|
+
|
2848
2943
|
def initialize(**args)
|
2849
2944
|
update!(**args)
|
2850
2945
|
end
|
2851
2946
|
|
2852
2947
|
# Update properties of this object
|
2853
2948
|
def update!(**args)
|
2949
|
+
@exclude_domains = args[:exclude_domains] if args.key?(:exclude_domains)
|
2854
2950
|
end
|
2855
2951
|
end
|
2856
2952
|
|
@@ -3086,6 +3182,12 @@ module Google
|
|
3086
3182
|
# @return [String]
|
3087
3183
|
attr_accessor :end_offset
|
3088
3184
|
|
3185
|
+
# Optional. The frame rate of the video sent to the model. If not specified, the
|
3186
|
+
# default value will be 1.0. The fps range is (0.0, 24.0].
|
3187
|
+
# Corresponds to the JSON property `fps`
|
3188
|
+
# @return [Float]
|
3189
|
+
attr_accessor :fps
|
3190
|
+
|
3089
3191
|
# Optional. The start offset of the video.
|
3090
3192
|
# Corresponds to the JSON property `startOffset`
|
3091
3193
|
# @return [String]
|
@@ -3098,6 +3200,7 @@ module Google
|
|
3098
3200
|
# Update properties of this object
|
3099
3201
|
def update!(**args)
|
3100
3202
|
@end_offset = args[:end_offset] if args.key?(:end_offset)
|
3203
|
+
@fps = args[:fps] if args.key?(:fps)
|
3101
3204
|
@start_offset = args[:start_offset] if args.key?(:start_offset)
|
3102
3205
|
end
|
3103
3206
|
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.
|
19
|
+
GEM_VERSION = "0.27.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 = "
|
25
|
+
REVISION = "20250727"
|
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
|
|
@@ -720,6 +732,7 @@ module Google
|
|
720
732
|
class GoogleCloudAiplatformV1beta1EnterpriseWebSearch
|
721
733
|
# @private
|
722
734
|
class Representation < Google::Apis::Core::JsonRepresentation
|
735
|
+
collection :exclude_domains, as: 'excludeDomains'
|
723
736
|
end
|
724
737
|
end
|
725
738
|
|
@@ -982,6 +995,8 @@ module Google
|
|
982
995
|
class GoogleCloudAiplatformV1beta1GroundingChunkMaps
|
983
996
|
# @private
|
984
997
|
class Representation < Google::Apis::Core::JsonRepresentation
|
998
|
+
property :place_answer_sources, as: 'placeAnswerSources', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources::Representation
|
999
|
+
|
985
1000
|
property :place_id, as: 'placeId'
|
986
1001
|
property :text, as: 'text'
|
987
1002
|
property :title, as: 'title'
|
@@ -989,6 +1004,36 @@ module Google
|
|
989
1004
|
end
|
990
1005
|
end
|
991
1006
|
|
1007
|
+
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources
|
1008
|
+
# @private
|
1009
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1010
|
+
property :flag_content_uri, as: 'flagContentUri'
|
1011
|
+
collection :review_snippets, as: 'reviewSnippets', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet::Representation
|
1012
|
+
|
1013
|
+
end
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
|
1017
|
+
# @private
|
1018
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1019
|
+
property :display_name, as: 'displayName'
|
1020
|
+
property :photo_uri, as: 'photoUri'
|
1021
|
+
property :uri, as: 'uri'
|
1022
|
+
end
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
1026
|
+
# @private
|
1027
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1028
|
+
property :author_attribution, as: 'authorAttribution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution::Representation
|
1029
|
+
|
1030
|
+
property :flag_content_uri, as: 'flagContentUri'
|
1031
|
+
property :google_maps_uri, as: 'googleMapsUri'
|
1032
|
+
property :relative_publish_time_description, as: 'relativePublishTimeDescription'
|
1033
|
+
property :review, as: 'review'
|
1034
|
+
end
|
1035
|
+
end
|
1036
|
+
|
992
1037
|
class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
|
993
1038
|
# @private
|
994
1039
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1289,8 +1334,6 @@ module Google
|
|
1289
1334
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1290
1335
|
property :code_execution, as: 'codeExecution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution::Representation
|
1291
1336
|
|
1292
|
-
property :computer_use, as: 'computerUse', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse::Representation
|
1293
|
-
|
1294
1337
|
property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch::Representation
|
1295
1338
|
|
1296
1339
|
collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration::Representation
|
@@ -1314,13 +1357,6 @@ module Google
|
|
1314
1357
|
end
|
1315
1358
|
end
|
1316
1359
|
|
1317
|
-
class GoogleCloudAiplatformV1beta1ToolComputerUse
|
1318
|
-
# @private
|
1319
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1320
|
-
property :environment, as: 'environment'
|
1321
|
-
end
|
1322
|
-
end
|
1323
|
-
|
1324
1360
|
class GoogleCloudAiplatformV1beta1ToolConfig
|
1325
1361
|
# @private
|
1326
1362
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1334,6 +1370,7 @@ module Google
|
|
1334
1370
|
class GoogleCloudAiplatformV1beta1ToolGoogleSearch
|
1335
1371
|
# @private
|
1336
1372
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1373
|
+
collection :exclude_domains, as: 'excludeDomains'
|
1337
1374
|
end
|
1338
1375
|
end
|
1339
1376
|
|
@@ -1405,6 +1442,7 @@ module Google
|
|
1405
1442
|
# @private
|
1406
1443
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1407
1444
|
property :end_offset, as: 'endOffset'
|
1445
|
+
property :fps, as: 'fps'
|
1408
1446
|
property :start_offset, as: 'startOffset'
|
1409
1447
|
end
|
1410
1448
|
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.
|
4
|
+
version: 0.27.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.27.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:
|