google-apis-firestore_v1 0.78.0 → 0.80.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: ea693eb472d7ef3ffec036b279124e922ee19a73a51fd76c83c768181b2deb6e
|
4
|
+
data.tar.gz: 438605d2c33d994de6cd95529751b5a9137499d0b3f5705d44bf0bc7fc1eb0ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f8a6cec0729a97a7465432139b57d65f4ab09632c040724788ac4ca75a0ba7de7e76ddc667a10d845909544b5280b477be2f3021498b47b30cd6318637de82e
|
7
|
+
data.tar.gz: c8cb96d221d57fd2133a8ab36dc9c8629ed0bd94cbe4d8e9a4c43deae859cd7174fa671470fd20da4bc90ef922e11ad91b035460aae705c8768bc0ad5874c28e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1
|
2
2
|
|
3
|
+
### v0.80.0 (2025-09-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250824
|
6
|
+
|
7
|
+
### v0.79.0 (2025-08-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250811
|
10
|
+
|
3
11
|
### v0.78.0 (2025-06-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250618
|
@@ -1458,7 +1458,8 @@ module Google
|
|
1458
1458
|
# associated with an existing database. This value should be 4-63 characters.
|
1459
1459
|
# Valid characters are /a-z-/ with first character a letter and the last a
|
1460
1460
|
# letter or a number. Must not be UUID-like /[0-9a-f]`8`(-[0-9a-f]`4`)`3`-[0-9a-
|
1461
|
-
# f]`12`/. "(default)" database ID is also valid
|
1461
|
+
# f]`12`/. "(default)" database ID is also valid if the database is Standard
|
1462
|
+
# edition.
|
1462
1463
|
# Corresponds to the JSON property `databaseId`
|
1463
1464
|
# @return [String]
|
1464
1465
|
attr_accessor :database_id
|
@@ -2292,6 +2293,13 @@ module Google
|
|
2292
2293
|
# @return [String]
|
2293
2294
|
attr_accessor :state
|
2294
2295
|
|
2296
|
+
# Optional. Whether it is an unique index. Unique index ensures all values for
|
2297
|
+
# the indexed field(s) are unique across documents.
|
2298
|
+
# Corresponds to the JSON property `unique`
|
2299
|
+
# @return [Boolean]
|
2300
|
+
attr_accessor :unique
|
2301
|
+
alias_method :unique?, :unique
|
2302
|
+
|
2295
2303
|
def initialize(**args)
|
2296
2304
|
update!(**args)
|
2297
2305
|
end
|
@@ -2306,6 +2314,7 @@ module Google
|
|
2306
2314
|
@query_scope = args[:query_scope] if args.key?(:query_scope)
|
2307
2315
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
2308
2316
|
@state = args[:state] if args.key?(:state)
|
2317
|
+
@unique = args[:unique] if args.key?(:unique)
|
2309
2318
|
end
|
2310
2319
|
end
|
2311
2320
|
|
@@ -2803,7 +2812,8 @@ module Google
|
|
2803
2812
|
# associated with an existing database. This value should be 4-63 characters.
|
2804
2813
|
# Valid characters are /a-z-/ with first character a letter and the last a
|
2805
2814
|
# letter or a number. Must not be UUID-like /[0-9a-f]`8`(-[0-9a-f]`4`)`3`-[0-9a-
|
2806
|
-
# f]`12`/. "(default)" database ID is also valid
|
2815
|
+
# f]`12`/. "(default)" database ID is also valid if the database is Standard
|
2816
|
+
# edition.
|
2807
2817
|
# Corresponds to the JSON property `databaseId`
|
2808
2818
|
# @return [String]
|
2809
2819
|
attr_accessor :database_id
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirestoreV1
|
18
18
|
# Version of the google-apis-firestore_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.80.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 = "20250824"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -142,7 +142,8 @@ module Google
|
|
142
142
|
# component of the database's resource name. This value should be 4-63
|
143
143
|
# characters. Valid characters are /a-z-/ with first character a letter and the
|
144
144
|
# last a letter or a number. Must not be UUID-like /[0-9a-f]`8`(-[0-9a-f]`4`)`3`-
|
145
|
-
# [0-9a-f]`12`/. "(default)" database ID is also valid
|
145
|
+
# [0-9a-f]`12`/. "(default)" database ID is also valid if the database is
|
146
|
+
# Standard edition.
|
146
147
|
# @param [String] fields
|
147
148
|
# Selector specifying which fields to include in a partial response.
|
148
149
|
# @param [String] quota_user
|
@@ -2011,8 +2012,8 @@ module Google
|
|
2011
2012
|
# @param [String] name
|
2012
2013
|
# The resource that owns the locations collection, if applicable.
|
2013
2014
|
# @param [Array<String>, String] extra_location_types
|
2014
|
-
# Optional.
|
2015
|
-
#
|
2015
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
2016
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
2016
2017
|
# @param [String] filter
|
2017
2018
|
# A filter to narrow down results to a preferred subset. The filtering language
|
2018
2019
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firestore_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.80.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-firestore_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.80.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|