google-apis-firestore_v1beta1 0.41.0 → 0.43.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: d401c7fc2f4693f8488b418a5817a9130e9fd60ade25f16e50331a68844c7f5a
4
- data.tar.gz: 45ac9d9c6c5824965c28d932b15230c47755de96e5710774aff76ff0aed51ed4
3
+ metadata.gz: d3d784bd48a32193f19792d628f2b96a6b056bf47e86cbcbef652affddd07663
4
+ data.tar.gz: 7dc3cb8f119289fe97a0943b5536aebb7c53b26dd37738e27d21739a8d5fbe03
5
5
  SHA512:
6
- metadata.gz: 78e0e92691c20dd5bdbbdee3ca3e7ad13c1036c2e0d35fe08a0199ee4a7fe18c3222717634848cfb4c49100c0b255f15ba36beb5010c0c5ded40b61a0f1e02a4
7
- data.tar.gz: 58efe7686f995ade7e6c614da240848d70b65a67bbdb8374ddc95f9870212fe9c570d6f98572b54f659da6c75601af683c3c0e12ec2b9e0ca952b05d8ba48ec9
6
+ metadata.gz: dbd724a02057f76bb7da275e8476a1abe587cdfcf9223e8c795ee88eb291361f2d10b3f4cecf30d85732baad76edec42488ae872f14c65c984b540f73f0d85e2
7
+ data.tar.gz: 98eadfa34141b870d046df600e62b43014c9c376131c01a67cb8ab4d8494fa899f7402e952a647efccdebdd92920718ac6ca7f3fbc1be20114d0823cb6407199
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firestore_v1beta1
2
2
 
3
+ ### v0.43.0 (2024-06-23)
4
+
5
+ * Regenerated from discovery document revision 20240617
6
+
7
+ ### v0.42.0 (2024-05-19)
8
+
9
+ * Regenerated using generator version 0.15.0
10
+
3
11
  ### v0.41.0 (2024-04-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20240420
@@ -1138,6 +1138,73 @@ module Google
1138
1138
  end
1139
1139
  end
1140
1140
 
1141
+ # Metadata for google.longrunning.Operation results from FirestoreAdmin.
1142
+ # BulkDeleteDocuments.
1143
+ class GoogleFirestoreAdminV1BulkDeleteDocumentsMetadata
1144
+ include Google::Apis::Core::Hashable
1145
+
1146
+ # The ids of the collection groups that are being deleted.
1147
+ # Corresponds to the JSON property `collectionIds`
1148
+ # @return [Array<String>]
1149
+ attr_accessor :collection_ids
1150
+
1151
+ # The time this operation completed. Will be unset if operation still in
1152
+ # progress.
1153
+ # Corresponds to the JSON property `endTime`
1154
+ # @return [String]
1155
+ attr_accessor :end_time
1156
+
1157
+ # Which namespace ids are being deleted.
1158
+ # Corresponds to the JSON property `namespaceIds`
1159
+ # @return [Array<String>]
1160
+ attr_accessor :namespace_ids
1161
+
1162
+ # The state of the operation.
1163
+ # Corresponds to the JSON property `operationState`
1164
+ # @return [String]
1165
+ attr_accessor :operation_state
1166
+
1167
+ # Describes the progress of the operation. Unit of work is generic and must be
1168
+ # interpreted based on where Progress is used.
1169
+ # Corresponds to the JSON property `progressBytes`
1170
+ # @return [Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1Progress]
1171
+ attr_accessor :progress_bytes
1172
+
1173
+ # Describes the progress of the operation. Unit of work is generic and must be
1174
+ # interpreted based on where Progress is used.
1175
+ # Corresponds to the JSON property `progressDocuments`
1176
+ # @return [Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1Progress]
1177
+ attr_accessor :progress_documents
1178
+
1179
+ # The timestamp that corresponds to the version of the database that is being
1180
+ # read to get the list of documents to delete. This time can also be used as the
1181
+ # timestamp of PITR in case of disaster recovery (subject to PITR window limit).
1182
+ # Corresponds to the JSON property `snapshotTime`
1183
+ # @return [String]
1184
+ attr_accessor :snapshot_time
1185
+
1186
+ # The time this operation started.
1187
+ # Corresponds to the JSON property `startTime`
1188
+ # @return [String]
1189
+ attr_accessor :start_time
1190
+
1191
+ def initialize(**args)
1192
+ update!(**args)
1193
+ end
1194
+
1195
+ # Update properties of this object
1196
+ def update!(**args)
1197
+ @collection_ids = args[:collection_ids] if args.key?(:collection_ids)
1198
+ @end_time = args[:end_time] if args.key?(:end_time)
1199
+ @namespace_ids = args[:namespace_ids] if args.key?(:namespace_ids)
1200
+ @operation_state = args[:operation_state] if args.key?(:operation_state)
1201
+ @progress_bytes = args[:progress_bytes] if args.key?(:progress_bytes)
1202
+ @progress_documents = args[:progress_documents] if args.key?(:progress_documents)
1203
+ @snapshot_time = args[:snapshot_time] if args.key?(:snapshot_time)
1204
+ @start_time = args[:start_time] if args.key?(:start_time)
1205
+ end
1206
+ end
1207
+
1141
1208
  # Metadata related to the create database operation.
1142
1209
  class GoogleFirestoreAdminV1CreateDatabaseMetadata
1143
1210
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirestoreV1beta1
18
18
  # Version of the google-apis-firestore_v1beta1 gem
19
- GEM_VERSION = "0.41.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240420"
25
+ REVISION = "20240617"
26
26
  end
27
27
  end
28
28
  end
@@ -232,6 +232,12 @@ module Google
232
232
  include Google::Apis::Core::JsonObjectSupport
233
233
  end
234
234
 
235
+ class GoogleFirestoreAdminV1BulkDeleteDocumentsMetadata
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
235
241
  class GoogleFirestoreAdminV1CreateDatabaseMetadata
236
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
243
 
@@ -866,6 +872,22 @@ module Google
866
872
  end
867
873
  end
868
874
 
875
+ class GoogleFirestoreAdminV1BulkDeleteDocumentsMetadata
876
+ # @private
877
+ class Representation < Google::Apis::Core::JsonRepresentation
878
+ collection :collection_ids, as: 'collectionIds'
879
+ property :end_time, as: 'endTime'
880
+ collection :namespace_ids, as: 'namespaceIds'
881
+ property :operation_state, as: 'operationState'
882
+ property :progress_bytes, as: 'progressBytes', class: Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1Progress, decorator: Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1Progress::Representation
883
+
884
+ property :progress_documents, as: 'progressDocuments', class: Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1Progress, decorator: Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1Progress::Representation
885
+
886
+ property :snapshot_time, as: 'snapshotTime'
887
+ property :start_time, as: 'startTime'
888
+ end
889
+ end
890
+
869
891
  class GoogleFirestoreAdminV1CreateDatabaseMetadata
870
892
  # @private
871
893
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firestore_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.43.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-04-28 00:00:00.000000000 Z
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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.43.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []