google-apis-firestore_v1beta1 0.17.0 → 0.20.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: c4ad7e2385127978b6bf2855e251d6ae1c0a2492e5bee5848f855ea852ae9342
4
- data.tar.gz: 1776b189e55f5bf7070c4d561ca0269c609e1bab26e9d5f8ab9b77db315d6214
3
+ metadata.gz: a965c08f5271e30bdb8848359387af64fcbbfada9598c4d9f333db03a0dd42ac
4
+ data.tar.gz: b160d815fb1143384a5ab23a4881f69bc17b40b2bdfec6ef013e1515c36d3038
5
5
  SHA512:
6
- metadata.gz: 57c630afe6733098262742df80740f998dd48ced08e715647e00e2aeec7d9c8b691859a0042a6be073446128aa37abb37d1c1fe83d11e60a64fd4720a7da75d5
7
- data.tar.gz: 1fbb03f0c1fbc4e615c5918cf320b1c06bb9f1f577e51c247e64e8ea67b5ec0091a4afccce0ac2a6a16c91d081519f78b950e3c2eede02855ecf0d0ba2e8c553
6
+ metadata.gz: fae237aaf6521534f40a5be6d7102f6e2c506c6efed19a4783bcbe40883b1ed57d4cd62b3964386cf4b7ee3e495a2d3cb391cf8eb060e77b52f78653f4c69769
7
+ data.tar.gz: 2d5dedebea489c4269e780f5ffb39b14e54bf346b82878f78a30afd44371b3f02e0796bd8cfa6618eafb351238479acd1707deeea5b034fe64290e0bd883f44d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-firestore_v1beta1
2
2
 
3
+ ### v0.20.0 (2022-09-10)
4
+
5
+ * Regenerated from discovery document revision 20220831
6
+
7
+ ### v0.19.0 (2022-08-21)
8
+
9
+ * Regenerated from discovery document revision 20220808
10
+ * Regenerated using generator version 0.9.0
11
+
12
+ ### v0.18.0 (2022-06-30)
13
+
14
+ * Regenerated using generator version 0.8.0
15
+
3
16
  ### v0.17.0 (2022-06-18)
4
17
 
5
18
  * Regenerated using generator version 0.7.0
@@ -642,7 +642,7 @@ module Google
642
642
  class FieldFilter
643
643
  include Google::Apis::Core::Hashable
644
644
 
645
- # A reference to a field, such as `max(messages.time) as max_time`.
645
+ # A reference to a field in a document, ex: `stats.operations`.
646
646
  # Corresponds to the JSON property `field`
647
647
  # @return [Google::Apis::FirestoreV1beta1::FieldReference]
648
648
  attr_accessor :field
@@ -669,11 +669,12 @@ module Google
669
669
  end
670
670
  end
671
671
 
672
- # A reference to a field, such as `max(messages.time) as max_time`.
672
+ # A reference to a field in a document, ex: `stats.operations`.
673
673
  class FieldReference
674
674
  include Google::Apis::Core::Hashable
675
675
 
676
- #
676
+ # The relative path of the document being referenced. Requires: * Conform to
677
+ # document field name limitations.
677
678
  # Corresponds to the JSON property `fieldPath`
678
679
  # @return [String]
679
680
  attr_accessor :field_path
@@ -1451,7 +1452,7 @@ module Google
1451
1452
  # @return [String]
1452
1453
  attr_accessor :direction
1453
1454
 
1454
- # A reference to a field, such as `max(messages.time) as max_time`.
1455
+ # A reference to a field in a document, ex: `stats.operations`.
1455
1456
  # Corresponds to the JSON property `field`
1456
1457
  # @return [Google::Apis::FirestoreV1beta1::FieldReference]
1457
1458
  attr_accessor :field
@@ -1846,27 +1847,32 @@ module Google
1846
1847
  attr_accessor :from
1847
1848
 
1848
1849
  # The maximum number of results to return. Applies after all other constraints.
1849
- # Must be >= 0 if specified.
1850
+ # Requires: * The value must be greater than or equal to zero if specified.
1850
1851
  # Corresponds to the JSON property `limit`
1851
1852
  # @return [Fixnum]
1852
1853
  attr_accessor :limit
1853
1854
 
1854
- # The number of results to skip. Applies before limit, but after all other
1855
- # constraints. Must be >= 0 if specified.
1855
+ # The number of documents to skip before returning the first result. This
1856
+ # applies after the constraints specified by the `WHERE`, `START AT`, & `END AT`
1857
+ # but before the `LIMIT` clause. Requires: * The value must be greater than or
1858
+ # equal to zero if specified.
1856
1859
  # Corresponds to the JSON property `offset`
1857
1860
  # @return [Fixnum]
1858
1861
  attr_accessor :offset
1859
1862
 
1860
- # The order to apply to the query results. Firestore guarantees a stable
1861
- # ordering through the following rules: * Any field required to appear in `
1862
- # order_by`, that is not already specified in `order_by`, is appended to the
1863
- # order in field name order by default. * If an order on `__name__` is not
1864
- # specified, it is appended by default. Fields are appended with the same sort
1865
- # direction as the last order specified, or 'ASCENDING' if no order was
1866
- # specified. For example: * `SELECT * FROM Foo ORDER BY A` becomes `SELECT *
1867
- # FROM Foo ORDER BY A, __name__` * `SELECT * FROM Foo ORDER BY A DESC` becomes `
1868
- # SELECT * FROM Foo ORDER BY A DESC, __name__ DESC` * `SELECT * FROM Foo WHERE A
1869
- # > 1` becomes `SELECT * FROM Foo WHERE A > 1 ORDER BY A, __name__`
1863
+ # The order to apply to the query results. Firestore allows callers to provide a
1864
+ # full ordering, a partial ordering, or no ordering at all. In all cases,
1865
+ # Firestore guarantees a stable ordering through the following rules: * The `
1866
+ # order_by` is required to reference all fields used with an inequality filter. *
1867
+ # All fields that are required to be in the `order_by` but are not already
1868
+ # present are appended in lexicographical ordering of the field name. * If an
1869
+ # order on `__name__` is not specified, it is appended by default. Fields are
1870
+ # appended with the same sort direction as the last order specified, or '
1871
+ # ASCENDING' if no order was specified. For example: * `ORDER BY a` becomes `
1872
+ # ORDER BY a ASC, __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC,
1873
+ # __name__ DESC` * `WHERE a > 1` becomes `WHERE a > 1 ORDER BY a ASC, __name__
1874
+ # ASC` * `WHERE __name__ > ... AND a > 1` becomes `WHERE __name__ > ... AND a >
1875
+ # 1 ORDER BY a ASC, __name__ ASC`
1870
1876
  # Corresponds to the JSON property `orderBy`
1871
1877
  # @return [Array<Google::Apis::FirestoreV1beta1::Order>]
1872
1878
  attr_accessor :order_by
@@ -2043,7 +2049,7 @@ module Google
2043
2049
  class UnaryFilter
2044
2050
  include Google::Apis::Core::Hashable
2045
2051
 
2046
- # A reference to a field, such as `max(messages.time) as max_time`.
2052
+ # A reference to a field in a document, ex: `stats.operations`.
2047
2053
  # Corresponds to the JSON property `field`
2048
2054
  # @return [Google::Apis::FirestoreV1beta1::FieldReference]
2049
2055
  attr_accessor :field
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirestoreV1beta1
18
18
  # Version of the google-apis-firestore_v1beta1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.20.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220428"
25
+ REVISION = "20220831"
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_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.20.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-06-20 00:00:00.000000000 Z
11
+ date: 2022-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.6'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.6'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.20.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []