google-apis-firestore_v1 0.23.0 → 0.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/firestore_v1/classes.rb +21 -14
- data/lib/google/apis/firestore_v1/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5faf29cf257e0eb36d939f8c18cbcdeaf7173774ac969f2245f807e783fa58e9
|
4
|
+
data.tar.gz: 2ff44281e61fe4530d33588fddc406911c3cd46de58a904a81e96a06d119c757
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 046f95c09bbdf4aa5cf846bfb636a8c817af76764deee62ea1b778a34ab66c4df1f5c096b3095f97a53244d520feb5abd0f3f6daedcecc1afc7f0d15a1dd6108
|
7
|
+
data.tar.gz: 2bfd7f3a54ed5e67d51ec32d87e8d7270e4ab2d22c721519d07233a5e7d5ad3b28bd7b7c8bb5d41d80850923ea8f3502eb3b5cb9f751f7bf90778f7e8fc5f9d8
|
data/CHANGELOG.md
CHANGED
@@ -984,8 +984,10 @@ module Google
|
|
984
984
|
|
985
985
|
# The TTL (time-to-live) configuration for documents that have this `Field` set.
|
986
986
|
# Storing a timestamp value into a TTL-enabled field will be treated as the
|
987
|
-
# document's absolute expiration time.
|
988
|
-
#
|
987
|
+
# document's absolute expiration time. Timestamp values in the past indicate
|
988
|
+
# that the document is eligible for immediate expiration. Using any other data
|
989
|
+
# type or leaving the field absent will disable expiration for the individual
|
990
|
+
# document.
|
989
991
|
# Corresponds to the JSON property `ttlConfig`
|
990
992
|
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1TtlConfig]
|
991
993
|
attr_accessor :ttl_config
|
@@ -1483,8 +1485,10 @@ module Google
|
|
1483
1485
|
|
1484
1486
|
# The TTL (time-to-live) configuration for documents that have this `Field` set.
|
1485
1487
|
# Storing a timestamp value into a TTL-enabled field will be treated as the
|
1486
|
-
# document's absolute expiration time.
|
1487
|
-
#
|
1488
|
+
# document's absolute expiration time. Timestamp values in the past indicate
|
1489
|
+
# that the document is eligible for immediate expiration. Using any other data
|
1490
|
+
# type or leaving the field absent will disable expiration for the individual
|
1491
|
+
# document.
|
1488
1492
|
class GoogleFirestoreAdminV1TtlConfig
|
1489
1493
|
include Google::Apis::Core::Hashable
|
1490
1494
|
|
@@ -2338,16 +2342,19 @@ module Google
|
|
2338
2342
|
# @return [Fixnum]
|
2339
2343
|
attr_accessor :offset
|
2340
2344
|
|
2341
|
-
# The order to apply to the query results. Firestore
|
2342
|
-
# ordering
|
2343
|
-
#
|
2344
|
-
#
|
2345
|
-
#
|
2346
|
-
#
|
2347
|
-
#
|
2348
|
-
#
|
2349
|
-
#
|
2350
|
-
#
|
2345
|
+
# The order to apply to the query results. Firestore allows callers to provide a
|
2346
|
+
# full ordering, a partial ordering, or no ordering at all. In all cases,
|
2347
|
+
# Firestore guarantees a stable ordering through the following rules: * The `
|
2348
|
+
# order_by` is required to reference all fields used with an inequality filter. *
|
2349
|
+
# All fields that are required to be in the `order_by` but are not already
|
2350
|
+
# present are appended in lexicographical ordering of the field name. * If an
|
2351
|
+
# order on `__name__` is not specified, it is appended by default. Fields are
|
2352
|
+
# appended with the same sort direction as the last order specified, or '
|
2353
|
+
# ASCENDING' if no order was specified. For example: * `ORDER BY a` becomes `
|
2354
|
+
# ORDER BY a ASC, __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC,
|
2355
|
+
# __name__ DESC` * `WHERE a > 1` becomes `WHERE a > 1 ORDER BY a ASC, __name__
|
2356
|
+
# ASC` * `WHERE __name__ > ... AND a > 1` becomes `WHERE __name__ > ... AND a >
|
2357
|
+
# 1 ORDER BY a ASC, __name__ ASC`
|
2351
2358
|
# Corresponds to the JSON property `orderBy`
|
2352
2359
|
# @return [Array<Google::Apis::FirestoreV1::Order>]
|
2353
2360
|
attr_accessor :order_by
|
@@ -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.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220808"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.24.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.24.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|