google-apis-firestore_v1beta1 0.42.0 → 0.44.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: 05c200ca0496b12d915689e6b8b778739c58f15e6854f82cb865390648e1c380
4
- data.tar.gz: 0474fffea738888264bcabf46b7cc1f0706b91a28c8ced23504709d888a5fb77
3
+ metadata.gz: b21b9b6d3afa2d888d660b8caedde9f1d57bdc0a926582d2c38ce88d981c2a49
4
+ data.tar.gz: b333300e82a43e45f627570cdfcdacd594d1dc6b15f5ae55a99f0288cffbc832
5
5
  SHA512:
6
- metadata.gz: 0fe3d832511e8c5d4274b2e204e58e1013aee1f02028c4651604bb55c07e2f3df2b6cb9bd2701f751098bc83b047679d87304f75e76d3d8638f747e5df88e7b8
7
- data.tar.gz: 78b44cc4225945d3777ad42ff81674971f3a98259d54b8e2b1428ad6265c9cc65cb3650606b6628e47b1c7d1d7ad819c0387dcb01b17b29478dda8b2038508dd
6
+ metadata.gz: e62864548dcfe178f39544e392eaa5c1430a0d52f756027ccf4f56604319c9904bdabfb52c477ad5cc2b3caa11ee733661dbc552bc040055e5405ad41b6f6663
7
+ data.tar.gz: d7801241a73f0bfaf59c83d14e146cb1aff85abfc4b0bd4df43c0953a4440037966dd7d2844bc01cbff81c270438fa47f2d16a505e27101fc71eceb691ffbc71
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firestore_v1beta1
2
2
 
3
+ ### v0.44.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240713
6
+
7
+ ### v0.43.0 (2024-06-23)
8
+
9
+ * Regenerated from discovery document revision 20240617
10
+
3
11
  ### v0.42.0 (2024-05-19)
4
12
 
5
13
  * Regenerated using generator version 0.15.0
@@ -1100,7 +1100,10 @@ module Google
1100
1100
  end
1101
1101
  end
1102
1102
 
1103
- # Nearest Neighbors search config.
1103
+ # Nearest Neighbors search config. The ordering provided by FindNearest
1104
+ # supersedes the order_by stage. If multiple documents have the same vector
1105
+ # distance, the returned document order is not guaranteed to be stable between
1106
+ # queries.
1104
1107
  class FindNearest
1105
1108
  include Google::Apis::Core::Hashable
1106
1109
 
@@ -1138,6 +1141,73 @@ module Google
1138
1141
  end
1139
1142
  end
1140
1143
 
1144
+ # Metadata for google.longrunning.Operation results from FirestoreAdmin.
1145
+ # BulkDeleteDocuments.
1146
+ class GoogleFirestoreAdminV1BulkDeleteDocumentsMetadata
1147
+ include Google::Apis::Core::Hashable
1148
+
1149
+ # The ids of the collection groups that are being deleted.
1150
+ # Corresponds to the JSON property `collectionIds`
1151
+ # @return [Array<String>]
1152
+ attr_accessor :collection_ids
1153
+
1154
+ # The time this operation completed. Will be unset if operation still in
1155
+ # progress.
1156
+ # Corresponds to the JSON property `endTime`
1157
+ # @return [String]
1158
+ attr_accessor :end_time
1159
+
1160
+ # Which namespace ids are being deleted.
1161
+ # Corresponds to the JSON property `namespaceIds`
1162
+ # @return [Array<String>]
1163
+ attr_accessor :namespace_ids
1164
+
1165
+ # The state of the operation.
1166
+ # Corresponds to the JSON property `operationState`
1167
+ # @return [String]
1168
+ attr_accessor :operation_state
1169
+
1170
+ # Describes the progress of the operation. Unit of work is generic and must be
1171
+ # interpreted based on where Progress is used.
1172
+ # Corresponds to the JSON property `progressBytes`
1173
+ # @return [Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1Progress]
1174
+ attr_accessor :progress_bytes
1175
+
1176
+ # Describes the progress of the operation. Unit of work is generic and must be
1177
+ # interpreted based on where Progress is used.
1178
+ # Corresponds to the JSON property `progressDocuments`
1179
+ # @return [Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1Progress]
1180
+ attr_accessor :progress_documents
1181
+
1182
+ # The timestamp that corresponds to the version of the database that is being
1183
+ # read to get the list of documents to delete. This time can also be used as the
1184
+ # timestamp of PITR in case of disaster recovery (subject to PITR window limit).
1185
+ # Corresponds to the JSON property `snapshotTime`
1186
+ # @return [String]
1187
+ attr_accessor :snapshot_time
1188
+
1189
+ # The time this operation started.
1190
+ # Corresponds to the JSON property `startTime`
1191
+ # @return [String]
1192
+ attr_accessor :start_time
1193
+
1194
+ def initialize(**args)
1195
+ update!(**args)
1196
+ end
1197
+
1198
+ # Update properties of this object
1199
+ def update!(**args)
1200
+ @collection_ids = args[:collection_ids] if args.key?(:collection_ids)
1201
+ @end_time = args[:end_time] if args.key?(:end_time)
1202
+ @namespace_ids = args[:namespace_ids] if args.key?(:namespace_ids)
1203
+ @operation_state = args[:operation_state] if args.key?(:operation_state)
1204
+ @progress_bytes = args[:progress_bytes] if args.key?(:progress_bytes)
1205
+ @progress_documents = args[:progress_documents] if args.key?(:progress_documents)
1206
+ @snapshot_time = args[:snapshot_time] if args.key?(:snapshot_time)
1207
+ @start_time = args[:start_time] if args.key?(:start_time)
1208
+ end
1209
+ end
1210
+
1141
1211
  # Metadata related to the create database operation.
1142
1212
  class GoogleFirestoreAdminV1CreateDatabaseMetadata
1143
1213
  include Google::Apis::Core::Hashable
@@ -2475,7 +2545,10 @@ module Google
2475
2545
  # @return [Google::Apis::FirestoreV1beta1::Cursor]
2476
2546
  attr_accessor :end_at
2477
2547
 
2478
- # Nearest Neighbors search config.
2548
+ # Nearest Neighbors search config. The ordering provided by FindNearest
2549
+ # supersedes the order_by stage. If multiple documents have the same vector
2550
+ # distance, the returned document order is not guaranteed to be stable between
2551
+ # queries.
2479
2552
  # Corresponds to the JSON property `findNearest`
2480
2553
  # @return [Google::Apis::FirestoreV1beta1::FindNearest]
2481
2554
  attr_accessor :find_nearest
@@ -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.42.0"
19
+ GEM_VERSION = "0.44.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 = "20240420"
25
+ REVISION = "20240713"
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.42.0
4
+ version: 0.44.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-07-25 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.44.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: []