google-apis-firestore_v1 0.46.0 → 0.47.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/firestore_v1/gem_version.rb +2 -2
- data/lib/google/apis/firestore_v1/service.rb +1 -9
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39c06fdb9abcfc546fb3798cb98a4301675d6d66133b2533799f8c4b8af644a3
|
4
|
+
data.tar.gz: d6169b84a5c35f4d88768b7f6951cebf8924ee42ff304c1566ee3c05d7f0889c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cfe8a7af8d1c73c3f58a6533eec259dadfa91bf65cbc8fd64c109a1b53a7eca3d9b8e6e4db8650d2dfdd69959a01e8fbb537f8ffc7dffde23b8d42b6a7c6f51
|
7
|
+
data.tar.gz: e6f22b77dd3bd60607d31260ddfab4de91f8aeb239074dbcf844c07ffe40fc0a160fd099d347b55464bcb0ff8e4ba2ebdf4effa6657eaf91a351aa2ce8a2c1cd
|
data/CHANGELOG.md
CHANGED
@@ -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.47.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 = "20230708"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -93,16 +93,10 @@ module Google
|
|
93
93
|
# Deletes a database.
|
94
94
|
# @param [String] name
|
95
95
|
# Required. A name of the form `projects/`project_id`/databases/`database_id``
|
96
|
-
# @param [Boolean] allow_missing
|
97
|
-
# If set to true and the Database is not found, the request will succeed but no
|
98
|
-
# action will be taken.
|
99
96
|
# @param [String] etag
|
100
97
|
# The current etag of the Database. If an etag is provided and does not match
|
101
98
|
# the current etag of the database, deletion will be blocked and a
|
102
99
|
# FAILED_PRECONDITION error will be returned.
|
103
|
-
# @param [Boolean] validate_only
|
104
|
-
# If set, validate the request and preview the response, but do not actually
|
105
|
-
# delete the database.
|
106
100
|
# @param [String] fields
|
107
101
|
# Selector specifying which fields to include in a partial response.
|
108
102
|
# @param [String] quota_user
|
@@ -120,14 +114,12 @@ module Google
|
|
120
114
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
121
115
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
122
116
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
123
|
-
def delete_project_database(name,
|
117
|
+
def delete_project_database(name, etag: nil, fields: nil, quota_user: nil, options: nil, &block)
|
124
118
|
command = make_simple_command(:delete, 'v1/{+name}', options)
|
125
119
|
command.response_representation = Google::Apis::FirestoreV1::GoogleLongrunningOperation::Representation
|
126
120
|
command.response_class = Google::Apis::FirestoreV1::GoogleLongrunningOperation
|
127
121
|
command.params['name'] = name unless name.nil?
|
128
|
-
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
|
129
122
|
command.query['etag'] = etag unless etag.nil?
|
130
|
-
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
131
123
|
command.query['fields'] = fields unless fields.nil?
|
132
124
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
133
125
|
execute_or_queue_command(command, &block)
|
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.47.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-07-
|
11
|
+
date: 2023-07-16 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.47.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: []
|