google-apis-firestore_v1beta2 0.24.0 → 0.26.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: 9436774de7c69a4f4c13a605239ed053f8071c0c4b22390c9635570cfc0992f2
4
- data.tar.gz: f9e60010696131e537c504e75c5841243ab8593054fa9597135bf1e87c8203d2
3
+ metadata.gz: fe9a356a968ed7bb62c6edb680dfe87a5702dc0377f963da14cf3e7daa2ad36d
4
+ data.tar.gz: ffa47005dddb46f76838f47be1cc1bcd47cfb895753d94f684a0b29f18929fef
5
5
  SHA512:
6
- metadata.gz: e91126134cc26e5e6ac8916fd986856ef1a1243df72a55702b7a2b4bc28e57f5f7e3c1a40699901e56a7a8751d6e1be0e53808a01a403d62e9a0aad7e678afbb
7
- data.tar.gz: b2c11d5abdedbe87eee63a4fc1d3073bcf76c4e8d9876635c67e3f3427cc003e06099b197a170872476f8c93d34bb8a5658b5f1f2fa6227fd8accb22512b5f57
6
+ metadata.gz: 2382c50c2d8e039c274e82aeb63b139059812119f38bc1e0cb9fdba9822007b16885d9907b4ed35df6764a5153646e3ab2ce0042e534d6d8d9dc2e54fd41c490
7
+ data.tar.gz: 9cf204841e8de8039527a9e79d96586855aa151de6a9edf2abb8cf56aa628c5ad72f87ec5964a62ccba95c9d75aa1ac9b7b0eaec2c8ad9c477796b1ea908584f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-firestore_v1beta2
2
2
 
3
+ ### v0.26.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20240822
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.25.0 (2024-06-23)
9
+
10
+ * Regenerated from discovery document revision 20240617
11
+
3
12
  ### v0.24.0 (2024-05-19)
4
13
 
5
14
  * Regenerated using generator version 0.15.0
@@ -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.24.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230905"
25
+ REVISION = "20240822"
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.24.0
4
+ version: 0.26.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-05-26 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta2/v0.26.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Firestore API V1beta2