You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/collections/configure/index.ts
+23-4Lines changed: 23 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@ import {
3
3
InvertedIndexConfigUpdate,
4
4
MultiTenancyConfigCreate,
5
5
ReplicationConfigCreate,
6
+
ReplicationDeletionStrategy,
6
7
ShardingConfigCreate,
7
8
VectorConfigUpdate,
8
9
VectorIndexType,
@@ -131,10 +132,19 @@ const configure = {
131
132
* See [the docs](https://weaviate.io/developers/weaviate/concepts/replication-architecture#replication-vs-sharding) for more details.
132
133
*
133
134
* @param {boolean} [options.asyncEnabled] Whether asynchronous replication is enabled. Default is false.
135
+
* @param {ReplicationDeletionStrategy} [options.deletionStrategy] The deletion strategy when replication conflicts are detected between deletes and reads.
134
136
* @param {number} [options.factor] The replication factor. Default is 1.
* Create a `ShardingConfigCreate` object to be used when defining the sharding configuration of your collection.
@@ -217,10 +227,19 @@ const reconfigure = {
217
227
* See [the docs](https://weaviate.io/developers/weaviate/concepts/replication-architecture#replication-vs-sharding) for more details.
218
228
*
219
229
* @param {boolean} [options.asyncEnabled] Whether asynchronous replication is enabled.
230
+
* @param {ReplicationDeletionStrategy} [options.deletionStrategy] The deletion strategy when replication conflicts are detected between deletes and reads.
220
231
* @param {number} [options.factor] The replication factor.
/** @description The definition of a backup create response body */
661
+
BackupListResponse: {
662
+
/** @description The ID of the backup. Must be URL-safe and work as a filesystem path, only lowercase, numbers, underscore, minus characters allowed. */
663
+
id?: string;
664
+
/** @description destination path of backup files proper to selected backend */
665
+
path?: string;
666
+
/** @description The list of classes for which the existed backup process */
0 commit comments