google-apis-firestore_v1 0.34.0 → 0.35.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: 1c3950505b8ceeef551a7b8084237953c93777a2a260b3e48f76647774a76f82
|
4
|
+
data.tar.gz: 1c97244f5017b7a9f6982117e95d056bc53c29b937bff6df247fe855f52e309f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 321e60a8eb471f48192bd14ee8fc0744effc433c7e1e0f3a027ebea2d09d20c1bc7e2b94d7590dd650a29aa21d7250c7f069ec159deeed0a6590c427d50b1e17
|
7
|
+
data.tar.gz: a18ef436598cfe72388f7ab3612ae0c7c33c1ce7e692510b48651f59adddaba068bf22c927c828621f939f5eaa21f18ab42a4527f1163705d2c36d3874fe7722
|
data/CHANGELOG.md
CHANGED
@@ -2368,7 +2368,11 @@ module Google
|
|
2368
2368
|
class RunAggregationQueryResponse
|
2369
2369
|
include Google::Apis::Core::Hashable
|
2370
2370
|
|
2371
|
-
# The time at which the aggregate
|
2371
|
+
# The time at which the aggregate result was computed. This is always
|
2372
|
+
# monotonically increasing; in this case, the previous AggregationResult in the
|
2373
|
+
# result stream are guaranteed not to have changed between their `read_time` and
|
2374
|
+
# this one. If the query returns no results, a response with `read_time` and no `
|
2375
|
+
# result` will be sent, and this represents the time at which the query was run.
|
2372
2376
|
# Corresponds to the JSON property `readTime`
|
2373
2377
|
# @return [String]
|
2374
2378
|
attr_accessor :read_time
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.35.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 = "20230228"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -56,10 +56,8 @@ module Google
|
|
56
56
|
# @param [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Database] google_firestore_admin_v1_database_object
|
57
57
|
# @param [String] database_id
|
58
58
|
# Required. The ID to use for the database, which will become the final
|
59
|
-
# component of the database's resource name.
|
60
|
-
#
|
61
|
-
# last a letter or a number. Must not be UUID-like /[0-9a-f]`8`(-[0-9a-f]`4`)`3`-
|
62
|
-
# [0-9a-f]`12`/. "(default)" database id is also valid.
|
59
|
+
# component of the database's resource name. The value must be set to "(default)"
|
60
|
+
# .
|
63
61
|
# @param [String] fields
|
64
62
|
# Selector specifying which fields to include in a partial response.
|
65
63
|
# @param [String] quota_user
|
@@ -100,9 +98,6 @@ module Google
|
|
100
98
|
# The current etag of the Database. If an etag is provided and does not match
|
101
99
|
# the current etag of the database, deletion will be blocked and a
|
102
100
|
# FAILED_PRECONDITION error will be returned.
|
103
|
-
# @param [Boolean] free_id
|
104
|
-
# If set, will free the database_id associated with this database. uid will be
|
105
|
-
# used as the resource id to identify this deleted database.
|
106
101
|
# @param [Boolean] validate_only
|
107
102
|
# If set, validate the request and preview the response, but do not actually
|
108
103
|
# delete the database.
|
@@ -123,14 +118,13 @@ module Google
|
|
123
118
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
124
119
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
125
120
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
126
|
-
def delete_project_database(name, allow_missing: nil, etag: nil,
|
121
|
+
def delete_project_database(name, allow_missing: nil, etag: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
127
122
|
command = make_simple_command(:delete, 'v1/{+name}', options)
|
128
123
|
command.response_representation = Google::Apis::FirestoreV1::GoogleLongrunningOperation::Representation
|
129
124
|
command.response_class = Google::Apis::FirestoreV1::GoogleLongrunningOperation
|
130
125
|
command.params['name'] = name unless name.nil?
|
131
126
|
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
|
132
127
|
command.query['etag'] = etag unless etag.nil?
|
133
|
-
command.query['freeId'] = free_id unless free_id.nil?
|
134
128
|
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
135
129
|
command.query['fields'] = fields unless fields.nil?
|
136
130
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -1040,7 +1034,8 @@ module Google
|
|
1040
1034
|
execute_or_queue_command(command, &block)
|
1041
1035
|
end
|
1042
1036
|
|
1043
|
-
# Listens to changes. This method is only available via
|
1037
|
+
# Listens to changes. This method is only available via gRPC or WebChannel (not
|
1038
|
+
# REST).
|
1044
1039
|
# @param [String] database
|
1045
1040
|
# Required. The database name. In the format: `projects/`project_id`/databases/`
|
1046
1041
|
# database_id``.
|
@@ -1274,7 +1269,7 @@ module Google
|
|
1274
1269
|
end
|
1275
1270
|
|
1276
1271
|
# Streams batches of document updates and deletes, in order. This method is only
|
1277
|
-
# available via
|
1272
|
+
# available via gRPC or WebChannel (not REST).
|
1278
1273
|
# @param [String] database
|
1279
1274
|
# Required. The database name. In the format: `projects/`project_id`/databases/`
|
1280
1275
|
# 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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.35.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-05 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.35.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: []
|