google-apis-firestore_v1beta2 0.24.0 → 0.25.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca5413ed84979cf56d1aa69d7df4f4ab74ea88aaf5d4afad41407860d915c0a8
|
4
|
+
data.tar.gz: 3d457ac819290f28c675357e4abdf24f485774f81a8437abe1b66c835b364522
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cfac3a1f9281d18603da241753a423790a40759be5d615e2b9c5abd0648fd396d2e7b34540ef565070358d37621e49cf89df0ca1a6082b9801e569e2b9b1f79
|
7
|
+
data.tar.gz: 8d2f18d3e643bf023d885c07cd21f4f6257b04652ccbf92408e886b15c747e0ed6e7b5155a9ffadd2512119439bd6a5f053b81325225546bb4f9ed274f1e1666
|
data/CHANGELOG.md
CHANGED
@@ -38,6 +38,73 @@ module Google
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
# Metadata for google.longrunning.Operation results from FirestoreAdmin.
|
42
|
+
# BulkDeleteDocuments.
|
43
|
+
class GoogleFirestoreAdminV1BulkDeleteDocumentsMetadata
|
44
|
+
include Google::Apis::Core::Hashable
|
45
|
+
|
46
|
+
# The ids of the collection groups that are being deleted.
|
47
|
+
# Corresponds to the JSON property `collectionIds`
|
48
|
+
# @return [Array<String>]
|
49
|
+
attr_accessor :collection_ids
|
50
|
+
|
51
|
+
# The time this operation completed. Will be unset if operation still in
|
52
|
+
# progress.
|
53
|
+
# Corresponds to the JSON property `endTime`
|
54
|
+
# @return [String]
|
55
|
+
attr_accessor :end_time
|
56
|
+
|
57
|
+
# Which namespace ids are being deleted.
|
58
|
+
# Corresponds to the JSON property `namespaceIds`
|
59
|
+
# @return [Array<String>]
|
60
|
+
attr_accessor :namespace_ids
|
61
|
+
|
62
|
+
# The state of the operation.
|
63
|
+
# Corresponds to the JSON property `operationState`
|
64
|
+
# @return [String]
|
65
|
+
attr_accessor :operation_state
|
66
|
+
|
67
|
+
# Describes the progress of the operation. Unit of work is generic and must be
|
68
|
+
# interpreted based on where Progress is used.
|
69
|
+
# Corresponds to the JSON property `progressBytes`
|
70
|
+
# @return [Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1Progress]
|
71
|
+
attr_accessor :progress_bytes
|
72
|
+
|
73
|
+
# Describes the progress of the operation. Unit of work is generic and must be
|
74
|
+
# interpreted based on where Progress is used.
|
75
|
+
# Corresponds to the JSON property `progressDocuments`
|
76
|
+
# @return [Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1Progress]
|
77
|
+
attr_accessor :progress_documents
|
78
|
+
|
79
|
+
# The timestamp that corresponds to the version of the database that is being
|
80
|
+
# read to get the list of documents to delete. This time can also be used as the
|
81
|
+
# timestamp of PITR in case of disaster recovery (subject to PITR window limit).
|
82
|
+
# Corresponds to the JSON property `snapshotTime`
|
83
|
+
# @return [String]
|
84
|
+
attr_accessor :snapshot_time
|
85
|
+
|
86
|
+
# The time this operation started.
|
87
|
+
# Corresponds to the JSON property `startTime`
|
88
|
+
# @return [String]
|
89
|
+
attr_accessor :start_time
|
90
|
+
|
91
|
+
def initialize(**args)
|
92
|
+
update!(**args)
|
93
|
+
end
|
94
|
+
|
95
|
+
# Update properties of this object
|
96
|
+
def update!(**args)
|
97
|
+
@collection_ids = args[:collection_ids] if args.key?(:collection_ids)
|
98
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
99
|
+
@namespace_ids = args[:namespace_ids] if args.key?(:namespace_ids)
|
100
|
+
@operation_state = args[:operation_state] if args.key?(:operation_state)
|
101
|
+
@progress_bytes = args[:progress_bytes] if args.key?(:progress_bytes)
|
102
|
+
@progress_documents = args[:progress_documents] if args.key?(:progress_documents)
|
103
|
+
@snapshot_time = args[:snapshot_time] if args.key?(:snapshot_time)
|
104
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
41
108
|
# Metadata related to the create database operation.
|
42
109
|
class GoogleFirestoreAdminV1CreateDatabaseMetadata
|
43
110
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirestoreV1beta2
|
18
18
|
# Version of the google-apis-firestore_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.25.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240617"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class GoogleFirestoreAdminV1BulkDeleteDocumentsMetadata
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class GoogleFirestoreAdminV1CreateDatabaseMetadata
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -166,6 +172,22 @@ module Google
|
|
166
172
|
end
|
167
173
|
end
|
168
174
|
|
175
|
+
class GoogleFirestoreAdminV1BulkDeleteDocumentsMetadata
|
176
|
+
# @private
|
177
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
178
|
+
collection :collection_ids, as: 'collectionIds'
|
179
|
+
property :end_time, as: 'endTime'
|
180
|
+
collection :namespace_ids, as: 'namespaceIds'
|
181
|
+
property :operation_state, as: 'operationState'
|
182
|
+
property :progress_bytes, as: 'progressBytes', class: Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1Progress, decorator: Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1Progress::Representation
|
183
|
+
|
184
|
+
property :progress_documents, as: 'progressDocuments', class: Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1Progress, decorator: Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1Progress::Representation
|
185
|
+
|
186
|
+
property :snapshot_time, as: 'snapshotTime'
|
187
|
+
property :start_time, as: 'startTime'
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
169
191
|
class GoogleFirestoreAdminV1CreateDatabaseMetadata
|
170
192
|
# @private
|
171
193
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firestore_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.25.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: 2024-
|
11
|
+
date: 2024-06-23 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_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta2/v0.25.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|