File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
src/main/java/io/weaviate/client6/v1/api/backup Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,17 @@ public enum CompressionLevel {
1111 BEST_SPEED ,
1212 /** Use compression algorithm that prioritizes compression quality. */
1313 @ SerializedName ("BestCompression" )
14- BEST_COMPRESSION ;
14+ BEST_COMPRESSION ,
15+ /** Use ZSTD compression algorithm at default (balanced) settings. */
16+ @ SerializedName ("ZstdDefaultCompression" )
17+ ZSTD_DEFAULT ,
18+ /** Use ZSTD compression algorithm and prioritize speed. */
19+ @ SerializedName ("ZstdBestSpeed" )
20+ ZSTD_BEST_SPEED ,
21+ /** Use ZSTD compression algorithm and prioritize compression quality. */
22+ @ SerializedName ("ZstdBestCompression" )
23+ ZSTD_BEST_COMPRESSION ,
24+ /** Do not use compression. */
25+ @ SerializedName ("NoCompression" )
26+ NO_COMPRESSION ;
1527}
You can’t perform that action at this time.
0 commit comments