google-cloud-firestore-admin-v1 0.18.0 → 1.0.1

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: e5efb5ca0e1799251476ae7009132313c4344a30bb07f98d88300ae057dce5ad
4
- data.tar.gz: e605435bf52225c4386e003209a0841557cde969d0de3cd9fc3617f1fff4f374
3
+ metadata.gz: 821c598bf011761300135cb84276918c343984e7d45b886e09cc021a85bcae3b
4
+ data.tar.gz: d822678f8fa7aeaa122157e44b80d8413f3966395fd52a0b1d3974ccbf518a68
5
5
  SHA512:
6
- metadata.gz: 51bcefd163a4b7b64ec8300b1262f9b629a0acbdd1655a70ef22a722727a1011f7e24e793cc99d897ba0bbe2043cef4dfdb4842c2cfaae84d9e8cc1ac729e79f
7
- data.tar.gz: 29957c44079cb27ad870f408779bac4c9ad8bf8b6de2c281915118a75c4d773d55337baa8b3e3a042892aa3e73395a860698a13ab8026fe815764a8ace41f414
6
+ metadata.gz: 0a4b502e5ac1a0f85134f8991ffcaab71a110475ff8db8d41613b400ff7da19c9026f00ace6b7ee2061403d63fed09b77772abd3be3a934a7fe0180ebc28614f
7
+ data.tar.gz: 7136fcbe1b70ec68d856b17ca2073122477966ba6e02668abd1e3cff5f18e1dbad94cf2866cde4b2584cd7a387085117b9095eea282ffb804e4f05430a4974c7
@@ -22,7 +22,7 @@ module Google
22
22
  module Firestore
23
23
  module Admin
24
24
  module V1
25
- VERSION = "0.18.0"
25
+ VERSION = "1.0.1"
26
26
  end
27
27
  end
28
28
  end
@@ -196,9 +196,26 @@ module Google
196
196
  # @!attribute [rw] common
197
197
  # @return [::Google::Api::CommonLanguageSettings]
198
198
  # Some settings.
199
+ # @!attribute [rw] experimental_features
200
+ # @return [::Google::Api::PythonSettings::ExperimentalFeatures]
201
+ # Experimental features to be included during client library generation.
199
202
  class PythonSettings
200
203
  include ::Google::Protobuf::MessageExts
201
204
  extend ::Google::Protobuf::MessageExts::ClassMethods
205
+
206
+ # Experimental features to be included during client library generation.
207
+ # These fields will be deprecated once the feature graduates and is enabled
208
+ # by default.
209
+ # @!attribute [rw] rest_async_io_enabled
210
+ # @return [::Boolean]
211
+ # Enables generation of asynchronous REST clients if `rest` transport is
212
+ # enabled. By default, asynchronous REST clients will not be generated.
213
+ # This feature will be enabled by default 1 month after launching the
214
+ # feature in preview packages.
215
+ class ExperimentalFeatures
216
+ include ::Google::Protobuf::MessageExts
217
+ extend ::Google::Protobuf::MessageExts::ClassMethods
218
+ end
202
219
  end
203
220
 
204
221
  # Settings for Node client libraries.
@@ -290,6 +307,13 @@ module Google
290
307
  # @return [::String]
291
308
  # The fully qualified name of the method, for which the options below apply.
292
309
  # This is used to find the method to apply the options.
310
+ #
311
+ # Example:
312
+ #
313
+ # publishing:
314
+ # method_settings:
315
+ # - selector: google.storage.control.v2.StorageControl.CreateFolder
316
+ # # method settings for CreateFolder...
293
317
  # @!attribute [rw] long_running
294
318
  # @return [::Google::Api::MethodSettings::LongRunning]
295
319
  # Describes settings to use for long-running operations when generating
@@ -298,17 +322,14 @@ module Google
298
322
  #
299
323
  # Example of a YAML configuration::
300
324
  #
301
- # publishing:
302
- # method_settings:
325
+ # publishing:
326
+ # method_settings:
303
327
  # - selector: google.cloud.speech.v2.Speech.BatchRecognize
304
328
  # long_running:
305
- # initial_poll_delay:
306
- # seconds: 60 # 1 minute
329
+ # initial_poll_delay: 60s # 1 minute
307
330
  # poll_delay_multiplier: 1.5
308
- # max_poll_delay:
309
- # seconds: 360 # 6 minutes
310
- # total_poll_timeout:
311
- # seconds: 54000 # 90 minutes
331
+ # max_poll_delay: 360s # 6 minutes
332
+ # total_poll_timeout: 54000s # 90 minutes
312
333
  # @!attribute [rw] auto_populated_fields
313
334
  # @return [::Array<::String>]
314
335
  # List of top-level fields of the request message, that should be
@@ -317,8 +338,8 @@ module Google
317
338
  #
318
339
  # Example of a YAML configuration:
319
340
  #
320
- # publishing:
321
- # method_settings:
341
+ # publishing:
342
+ # method_settings:
322
343
  # - selector: google.example.v1.ExampleService.CreateExample
323
344
  # auto_populated_fields:
324
345
  # - request_id
@@ -124,8 +124,13 @@ module Google
124
124
  # @return [::String]
125
125
  # The plural name used in the resource name and permission names, such as
126
126
  # 'projects' for the resource name of 'projects/\\{project}' and the permission
127
- # name of 'cloudresourcemanager.googleapis.com/projects.get'. It is the same
128
- # concept of the `plural` field in k8s CRD spec
127
+ # name of 'cloudresourcemanager.googleapis.com/projects.get'. One exception
128
+ # to this is for Nested Collections that have stuttering names, as defined
129
+ # in [AIP-122](https://google.aip.dev/122#nested-collections), where the
130
+ # collection ID in the resource name pattern does not necessarily directly
131
+ # match the `plural` value.
132
+ #
133
+ # It is the same concept of the `plural` field in k8s CRD spec
129
134
  # https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
130
135
  #
131
136
  # Note: The plural form is required even for singleton resources. See
@@ -25,7 +25,7 @@ module Google
25
25
  # Represents a single field in the database.
26
26
  #
27
27
  # Fields are grouped by their "Collection Group", which represent all
28
- # collections in the database with the same id.
28
+ # collections in the database with the same ID.
29
29
  # @!attribute [rw] name
30
30
  # @return [::String]
31
31
  # Required. A field name of the form:
@@ -34,11 +34,11 @@ module Google
34
34
  # @return [::Google::Cloud::Firestore::Admin::V1::Index::QueryScope]
35
35
  # Indexes with a collection query scope specified allow queries
36
36
  # against a collection that is the child of a specific document, specified at
37
- # query time, and that has the same collection id.
37
+ # query time, and that has the same collection ID.
38
38
  #
39
39
  # Indexes with a collection group query scope specified allow queries against
40
40
  # all collections descended from a specific document, specified at query
41
- # time, and that have the same collection id as this index.
41
+ # time, and that have the same collection ID as this index.
42
42
  # @!attribute [rw] api_scope
43
43
  # @return [::Google::Cloud::Firestore::Admin::V1::Index::ApiScope]
44
44
  # The API scope supported by this index.
@@ -137,11 +137,11 @@ module Google
137
137
 
138
138
  # Indexes with a collection query scope specified allow queries
139
139
  # against a collection that is the child of a specific document, specified
140
- # at query time, and that has the collection id specified by the index.
140
+ # at query time, and that has the collection ID specified by the index.
141
141
  COLLECTION = 1
142
142
 
143
143
  # Indexes with a collection group query scope specified allow queries
144
- # against all collections that has the collection id specified by the
144
+ # against all collections that has the collection ID specified by the
145
145
  # index.
146
146
  COLLECTION_GROUP = 2
147
147
 
@@ -152,13 +152,13 @@ module Google
152
152
  # The progress, in bytes, of this operation.
153
153
  # @!attribute [rw] collection_ids
154
154
  # @return [::Array<::String>]
155
- # Which collection ids are being exported.
155
+ # Which collection IDs are being exported.
156
156
  # @!attribute [rw] output_uri_prefix
157
157
  # @return [::String]
158
158
  # Where the documents are being exported to.
159
159
  # @!attribute [rw] namespace_ids
160
160
  # @return [::Array<::String>]
161
- # Which namespace ids are being exported.
161
+ # Which namespace IDs are being exported.
162
162
  # @!attribute [rw] snapshot_time
163
163
  # @return [::Google::Protobuf::Timestamp]
164
164
  # The timestamp that corresponds to the version of the database that is being
@@ -190,13 +190,13 @@ module Google
190
190
  # The progress, in bytes, of this operation.
191
191
  # @!attribute [rw] collection_ids
192
192
  # @return [::Array<::String>]
193
- # Which collection ids are being imported.
193
+ # Which collection IDs are being imported.
194
194
  # @!attribute [rw] input_uri_prefix
195
195
  # @return [::String]
196
196
  # The location of the documents being imported.
197
197
  # @!attribute [rw] namespace_ids
198
198
  # @return [::Array<::String>]
199
- # Which namespace ids are being imported.
199
+ # Which namespace IDs are being imported.
200
200
  class ImportDocumentsMetadata
201
201
  include ::Google::Protobuf::MessageExts
202
202
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -223,10 +223,10 @@ module Google
223
223
  # The progress, in bytes, of this operation.
224
224
  # @!attribute [rw] collection_ids
225
225
  # @return [::Array<::String>]
226
- # The ids of the collection groups that are being deleted.
226
+ # The IDs of the collection groups that are being deleted.
227
227
  # @!attribute [rw] namespace_ids
228
228
  # @return [::Array<::String>]
229
- # Which namespace ids are being deleted.
229
+ # Which namespace IDs are being deleted.
230
230
  # @!attribute [rw] snapshot_time
231
231
  # @return [::Google::Protobuf::Timestamp]
232
232
  # The timestamp that corresponds to the version of the database that is being
@@ -50,6 +50,8 @@ module Google
50
50
  # @return [::Google::Protobuf::Duration]
51
51
  # At what relative time in the future, compared to its creation time,
52
52
  # the backup should be deleted, e.g. keep backups for 7 days.
53
+ #
54
+ # The maximum supported retention period is 14 weeks.
53
55
  # @!attribute [rw] daily_recurrence
54
56
  # @return [::Google::Cloud::Firestore::Admin::V1::DailyRecurrence]
55
57
  # For a schedule that runs daily.
@@ -61,7 +63,7 @@ module Google
61
63
  extend ::Google::Protobuf::MessageExts::ClassMethods
62
64
  end
63
65
 
64
- # Represents a recurring schedule that runs at a specific time every day.
66
+ # Represents a recurring schedule that runs every day.
65
67
  #
66
68
  # The time zone is UTC.
67
69
  class DailyRecurrence
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-firestore-admin-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-13 00:00:00.000000000 Z
11
+ date: 2024-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common