google-apis-firestore_v1 0.35.0 → 0.36.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: 1c3950505b8ceeef551a7b8084237953c93777a2a260b3e48f76647774a76f82
4
- data.tar.gz: 1c97244f5017b7a9f6982117e95d056bc53c29b937bff6df247fe855f52e309f
3
+ metadata.gz: f4e5862f61f098856d42b15156510a1ef916bd645a77d75e17cb7ef1aec00ac9
4
+ data.tar.gz: cfa9eb274b4fb2cde881e01179279dd1ecbea4ab8a795e49a24aab7ab830a376
5
5
  SHA512:
6
- metadata.gz: 321e60a8eb471f48192bd14ee8fc0744effc433c7e1e0f3a027ebea2d09d20c1bc7e2b94d7590dd650a29aa21d7250c7f069ec159deeed0a6590c427d50b1e17
7
- data.tar.gz: a18ef436598cfe72388f7ab3612ae0c7c33c1ce7e692510b48651f59adddaba068bf22c927c828621f939f5eaa21f18ab42a4527f1163705d2c36d3874fe7722
6
+ metadata.gz: ff1b8f2a3c08da0952f558b7e8184b8061c652e5e97e625d3e36c16cefdd41ea0438a6079afae8feb41cb97a0ef2bf5f98db24581efd55159a2a98cfa6aa7ab5
7
+ data.tar.gz: 24ba11312abba5561b080070c660572f5b9fccee0f60811b43c432bcb74b68ed00ab2698016ee83994d55a71ff76692779562d5737aa61bda3bde27bff1aadfe
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.36.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230315
6
+
3
7
  ### v0.35.0 (2023-03-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20230228
@@ -22,17 +22,17 @@ module Google
22
22
  module Apis
23
23
  module FirestoreV1
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`
@@ -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.35.0"
19
+ GEM_VERSION = "0.36.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 = "20230228"
25
+ REVISION = "20230315"
26
26
  end
27
27
  end
28
28
  end
@@ -1408,13 +1408,7 @@ module Google
1408
1408
  end
1409
1409
 
1410
1410
  # Lists operations that match the specified filter in the request. If the server
1411
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
1412
- # binding allows API services to override the binding to use different resource
1413
- # name schemes, such as `users/*/operations`. To override the binding, API
1414
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
1415
- # service configuration. For backwards compatibility, the default name includes
1416
- # the operations collection id, however overriding users must ensure the name
1417
- # binding is the parent resource, without the operations collection id.
1411
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
1418
1412
  # @param [String] name
1419
1413
  # The name of the operation's parent resource.
1420
1414
  # @param [String] filter
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.35.0
4
+ version: 0.36.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-03-05 00:00:00.000000000 Z
11
+ date: 2023-03-19 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.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.36.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: []