google-apis-firestore_v1beta1 0.24.0 → 0.26.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: e8a28a3da901c2a682f81accd1fc5463dd560eb70035e99534be43e88b278050
|
4
|
+
data.tar.gz: 17ffff33dbb80902d5c1ac7b1714aa6ef7585942edc260a393cde02a1354756e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e800a555093a05860d93b133f1dbb01e6be3c6c923b203ec9fc0a0f8342ae72795fba19c7b5a290f19c451a4b398aa170a3275543ea0d6308b08b3d6532dd18
|
7
|
+
data.tar.gz: a6a5188e7246f7419b55bb806d67d9bbed7874ed3fdf30e91dc10ad58a8a858bb92bfa14b8545af245459b269babca5ba2c909435a461f1abf567d46a658e7d4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1beta1
|
2
2
|
|
3
|
+
### v0.26.0 (2023-03-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230315
|
6
|
+
|
7
|
+
### v0.25.0 (2023-03-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230228
|
10
|
+
|
3
11
|
### v0.24.0 (2023-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230214
|
@@ -22,17 +22,17 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module FirestoreV1beta1
|
24
24
|
|
25
|
-
# Defines
|
25
|
+
# Defines an aggregation that produces a single result.
|
26
26
|
class Aggregation
|
27
27
|
include Google::Apis::Core::Hashable
|
28
28
|
|
29
29
|
# Optional. Optional name of the field to store the result of the aggregation
|
30
30
|
# into. If not provided, Firestore will pick a default name following the format
|
31
31
|
# `field_`. For example: ``` AGGREGATE COUNT_UP_TO(1) AS count_up_to_1,
|
32
|
-
# COUNT_UP_TO(2), COUNT_UP_TO(3) AS count_up_to_3,
|
33
|
-
#
|
34
|
-
# field_1, COUNT_UP_TO(3) AS count_up_to_3,
|
35
|
-
#
|
32
|
+
# COUNT_UP_TO(2), COUNT_UP_TO(3) AS count_up_to_3, COUNT(*) OVER ( ... ); ```
|
33
|
+
# becomes: ``` AGGREGATE COUNT_UP_TO(1) AS count_up_to_1, COUNT_UP_TO(2) AS
|
34
|
+
# field_1, COUNT_UP_TO(3) AS count_up_to_3, COUNT(*) AS field_2 OVER ( ... ); ```
|
35
|
+
# Requires: * Must be unique across all aggregation aliases. * Conform to
|
36
36
|
# document field name limitations.
|
37
37
|
# Corresponds to the JSON property `alias`
|
38
38
|
# @return [String]
|
@@ -397,7 +397,7 @@ module Google
|
|
397
397
|
|
398
398
|
# Optional. Optional constraint on the maximum number of documents to count.
|
399
399
|
# This provides a way to set an upper bound on the number of documents to scan,
|
400
|
-
# limiting latency and cost. Unspecified is interpreted as no bound. High-Level
|
400
|
+
# limiting latency, and cost. Unspecified is interpreted as no bound. High-Level
|
401
401
|
# Example: ``` AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k ); ```
|
402
402
|
# Requires: * Must be greater than zero when present.
|
403
403
|
# Corresponds to the JSON property `upTo`
|
@@ -1825,7 +1825,11 @@ module Google
|
|
1825
1825
|
class RunAggregationQueryResponse
|
1826
1826
|
include Google::Apis::Core::Hashable
|
1827
1827
|
|
1828
|
-
# The time at which the aggregate
|
1828
|
+
# The time at which the aggregate result was computed. This is always
|
1829
|
+
# monotonically increasing; in this case, the previous AggregationResult in the
|
1830
|
+
# result stream are guaranteed not to have changed between their `read_time` and
|
1831
|
+
# this one. If the query returns no results, a response with `read_time` and no `
|
1832
|
+
# result` will be sent, and this represents the time at which the query was run.
|
1829
1833
|
# Corresponds to the JSON property `readTime`
|
1830
1834
|
# @return [String]
|
1831
1835
|
attr_accessor :read_time
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.26.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230315"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -576,7 +576,8 @@ module Google
|
|
576
576
|
execute_or_queue_command(command, &block)
|
577
577
|
end
|
578
578
|
|
579
|
-
# Listens to changes. This method is only available via
|
579
|
+
# Listens to changes. This method is only available via gRPC or WebChannel (not
|
580
|
+
# REST).
|
580
581
|
# @param [String] database
|
581
582
|
# Required. The database name. In the format: `projects/`project_id`/databases/`
|
582
583
|
# database_id``.
|
@@ -810,7 +811,7 @@ module Google
|
|
810
811
|
end
|
811
812
|
|
812
813
|
# Streams batches of document updates and deletes, in order. This method is only
|
813
|
-
# available via
|
814
|
+
# available via gRPC or WebChannel (not REST).
|
814
815
|
# @param [String] database
|
815
816
|
# Required. The database name. In the format: `projects/`project_id`/databases/`
|
816
817
|
# database_id``. This is only required in the first message.
|
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.
|
4
|
+
version: 0.26.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: 2023-
|
11
|
+
date: 2023-03-26 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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.26.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: []
|