We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f93d860 commit 5a4b542Copy full SHA for 5a4b542
1 file changed
src/main/java/io/weaviate/client6/v1/api/backup/CompressionLevel.java
@@ -11,7 +11,7 @@ public enum CompressionLevel {
11
BEST_SPEED,
12
/** Use compression algorithm that prioritizes compression quality. */
13
@SerializedName("BestCompression")
14
- BEST_COMPRESSION;
+ BEST_COMPRESSION,
15
/** Use ZSTD compression algorithm at default (balanced) settings. */
16
@SerializedName("ZstdDefaultCompression")
17
ZSTD_DEFAULT,
@@ -20,7 +20,7 @@ public enum CompressionLevel {
20
ZSTD_BEST_SPEED,
21
/** Use ZSTD compression algorithm and prioritize compression quality. */
22
@SerializedName("ZstdBestCompression")
23
- ZSTD_BEST_COMPRESSION;
+ ZSTD_BEST_COMPRESSION,
24
/** Do not use compression. */
25
@SerializedName("NoCompression")
26
NO_COMPRESSION;
0 commit comments