google-apis-firestore_v1beta1 0.24.0 → 0.26.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: d8ba687051a8226f1ef1aaaa0deb4a607c4781d43e13c0e065b9e7aa287c6287
4
- data.tar.gz: 79ec87d5b4c7b0720339d88144e651fad2cd4b68c9d6aaf3613f899274a9b354
3
+ metadata.gz: e8a28a3da901c2a682f81accd1fc5463dd560eb70035e99534be43e88b278050
4
+ data.tar.gz: 17ffff33dbb80902d5c1ac7b1714aa6ef7585942edc260a393cde02a1354756e
5
5
  SHA512:
6
- metadata.gz: 42052b1e3e1de9231ed89923993a6566d6e0fc46c764bb7a5bf1d3131d6c42eba3ec8208c1ba54453a6589708604d4c9f037d031c8d1b1ff30c1ecaff3e91880
7
- data.tar.gz: '0728aba3b63351f6ebee658a7f59902c2e0475929791137e4dc595435c3526c7be4f832d6284444278f6a3d667d0f076839f134e0ff405c7e097a7823b168750'
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 a aggregation that produces a single result.
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, COUNT_UP_TO(4) 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_UP_TO(4) AS field_2 OVER ( ...
35
- # ); ``` Requires: * Must be unique across all aggregation aliases. * Conform to
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 value is valid for.
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.24.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 = "20230214"
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 the gRPC API (not REST).
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 the gRPC API (not REST).
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.24.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-02-26 00:00:00.000000000 Z
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.24.0
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: []