google-apis-firestore_v1 0.24.0 → 0.25.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: 5faf29cf257e0eb36d939f8c18cbcdeaf7173774ac969f2245f807e783fa58e9
4
- data.tar.gz: 2ff44281e61fe4530d33588fddc406911c3cd46de58a904a81e96a06d119c757
3
+ metadata.gz: f8945a160c7cef4256e61b8216b5079b39f92b683fba8337a3862d063a87756c
4
+ data.tar.gz: 43ed93765a460c156249497adcb029746a57a0bff624b3bfe2da904d6ca7ac69
5
5
  SHA512:
6
- metadata.gz: 046f95c09bbdf4aa5cf846bfb636a8c817af76764deee62ea1b778a34ab66c4df1f5c096b3095f97a53244d520feb5abd0f3f6daedcecc1afc7f0d15a1dd6108
7
- data.tar.gz: 2bfd7f3a54ed5e67d51ec32d87e8d7270e4ab2d22c721519d07233a5e7d5ad3b28bd7b7c8bb5d41d80850923ea8f3502eb3b5cb9f751f7bf90778f7e8fc5f9d8
6
+ metadata.gz: c84a1a44251bca326c3f865802c66ad9ecb36545f405b7bb310412179e14d105094388691e825e47f6e27cc3ad64894065ff9467773cd9a6864cf68a29020952
7
+ data.tar.gz: e8eaf088e1b3a3b72635325fc0051fd1df1942eea3d204f5540a8a83dd151c6f9f9e4f33955e3256b8585c28983e7d5fe3e208ace551f54ad15af67438f19c62
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.25.0 (2022-09-09)
4
+
5
+ * Regenerated from discovery document revision 20220831
6
+
3
7
  ### v0.24.0 (2022-08-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20220808
@@ -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::FirestoreV1::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
@@ -1163,14 +1164,14 @@ module Google
1163
1164
  class GoogleFirestoreAdminV1Index
1164
1165
  include Google::Apis::Core::Hashable
1165
1166
 
1166
- # The fields supported by this index. For composite indexes, this is always 2 or
1167
- # more fields. The last field entry is always for the field path `__name__`. If,
1168
- # on creation, `__name__` was not specified as the last field, it will be added
1169
- # automatically with the same direction as that of the last field defined. If
1170
- # the final field in a composite index is not directional, the `__name__` will
1171
- # be ordered ASCENDING (unless explicitly specified). For single field indexes,
1172
- # this will always be exactly one entry with a field path equal to the field
1173
- # path of the associated field.
1167
+ # The fields supported by this index. For composite indexes, this requires a
1168
+ # minimum of 2 and a maximum of 100 fields. The last field entry is always for
1169
+ # the field path `__name__`. If, on creation, `__name__` was not specified as
1170
+ # the last field, it will be added automatically with the same direction as that
1171
+ # of the last field defined. If the final field in a composite index is not
1172
+ # directional, the `__name__` will be ordered ASCENDING (unless explicitly
1173
+ # specified). For single field indexes, this will always be exactly one entry
1174
+ # with a field path equal to the field path of the associated field.
1174
1175
  # Corresponds to the JSON property `fields`
1175
1176
  # @return [Array<Google::Apis::FirestoreV1::GoogleFirestoreAdminV1IndexField>]
1176
1177
  attr_accessor :fields
@@ -1936,7 +1937,7 @@ module Google
1936
1937
  # @return [String]
1937
1938
  attr_accessor :direction
1938
1939
 
1939
- # A reference to a field, such as `max(messages.time) as max_time`.
1940
+ # A reference to a field in a document, ex: `stats.operations`.
1940
1941
  # Corresponds to the JSON property `field`
1941
1942
  # @return [Google::Apis::FirestoreV1::FieldReference]
1942
1943
  attr_accessor :field
@@ -2331,13 +2332,15 @@ module Google
2331
2332
  attr_accessor :from
2332
2333
 
2333
2334
  # The maximum number of results to return. Applies after all other constraints.
2334
- # Must be >= 0 if specified.
2335
+ # Requires: * The value must be greater than or equal to zero if specified.
2335
2336
  # Corresponds to the JSON property `limit`
2336
2337
  # @return [Fixnum]
2337
2338
  attr_accessor :limit
2338
2339
 
2339
- # The number of results to skip. Applies before limit, but after all other
2340
- # constraints. Must be >= 0 if specified.
2340
+ # The number of documents to skip before returning the first result. This
2341
+ # applies after the constraints specified by the `WHERE`, `START AT`, & `END AT`
2342
+ # but before the `LIMIT` clause. Requires: * The value must be greater than or
2343
+ # equal to zero if specified.
2341
2344
  # Corresponds to the JSON property `offset`
2342
2345
  # @return [Fixnum]
2343
2346
  attr_accessor :offset
@@ -2531,7 +2534,7 @@ module Google
2531
2534
  class UnaryFilter
2532
2535
  include Google::Apis::Core::Hashable
2533
2536
 
2534
- # A reference to a field, such as `max(messages.time) as max_time`.
2537
+ # A reference to a field in a document, ex: `stats.operations`.
2535
2538
  # Corresponds to the JSON property `field`
2536
2539
  # @return [Google::Apis::FirestoreV1::FieldReference]
2537
2540
  attr_accessor :field
@@ -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.24.0"
19
+ GEM_VERSION = "0.25.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 = "20220808"
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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.25.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-08-22 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
@@ -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.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.25.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: []