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 81ddf7a commit d29f32dCopy full SHA for d29f32d
1 file changed
src/main/java/io/weaviate/client6/v1/api/backup/Backup.java
@@ -35,6 +35,8 @@ public record Backup(
35
@SerializedName("completedAt") OffsetDateTime completedAt,
36
/** Backup size in GiB. */
37
@SerializedName("size") Float sizeGiB,
38
+ /** Prefix for the incremental backup IDs. */
39
+ @SerializedName("incremental_base_backup_id") String prefixIncremental,
40
/**
41
* This value indicates if a backup is being created or restored from.
42
* For operations like LIST this value is null.
@@ -55,6 +57,7 @@ Backup withOperation(Operation operation) {
55
57
startedAt,
56
58
completedAt,
59
sizeGiB,
60
+ prefixIncremental,
61
operation);
62
}
63
0 commit comments