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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fbf453bbf50e5c90e3669ca68cf6f1394a4d9336074fc8f09e48a292ef41582
4
- data.tar.gz: af8128e6cc00a819c536192c4dc114262c8b46333a48cac505de08b71b92a8d1
3
+ metadata.gz: 5faf29cf257e0eb36d939f8c18cbcdeaf7173774ac969f2245f807e783fa58e9
4
+ data.tar.gz: 2ff44281e61fe4530d33588fddc406911c3cd46de58a904a81e96a06d119c757
5
5
  SHA512:
6
- metadata.gz: ce675f3efa8e0cca130b3a92682d576688fe111b802e1b06a8dc1851e333e375e7259b504acbecbd1344dda8b7209728d467dc2286ea7e7297c1f353c613c778
7
- data.tar.gz: 9d1abbe62b36a50cefb2d30679833d6ae755dc27dedcf848ba73ad2bbc05324d02941c0787a577bb14f3237bb6cf77bcec74d616250ff9129d9c9949ab3d0848
6
+ metadata.gz: 046f95c09bbdf4aa5cf846bfb636a8c817af76764deee62ea1b778a34ab66c4df1f5c096b3095f97a53244d520feb5abd0f3f6daedcecc1afc7f0d15a1dd6108
7
+ data.tar.gz: 2bfd7f3a54ed5e67d51ec32d87e8d7270e4ab2d22c721519d07233a5e7d5ad3b28bd7b7c8bb5d41d80850923ea8f3502eb3b5cb9f751f7bf90778f7e8fc5f9d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.24.0 (2022-08-19)
4
+
5
+ * Regenerated from discovery document revision 20220808
6
+
3
7
  ### v0.23.0 (2022-07-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20220625
@@ -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. Using any other data type or leaving the
988
- # field absent will disable the TTL for the individual document.
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. Using any other data type or leaving the
1487
- # field absent will disable the TTL for the individual document.
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 guarantees a stable
2342
- # ordering through the following rules: * Any field required to appear in `
2343
- # order_by`, that is not already specified in `order_by`, is appended to the
2344
- # order in field name order by default. * If an order on `__name__` is not
2345
- # specified, it is appended by default. Fields are appended with the same sort
2346
- # direction as the last order specified, or 'ASCENDING' if no order was
2347
- # specified. For example: * `SELECT * FROM Foo ORDER BY A` becomes `SELECT *
2348
- # FROM Foo ORDER BY A, __name__` * `SELECT * FROM Foo ORDER BY A DESC` becomes `
2349
- # SELECT * FROM Foo ORDER BY A DESC, __name__ DESC` * `SELECT * FROM Foo WHERE A
2350
- # > 1` becomes `SELECT * FROM Foo WHERE A > 1 ORDER BY A, __name__`
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.23.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 = "20220625"
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.23.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-07-18 00:00:00.000000000 Z
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.23.0
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: []