Skip to content

Commit d29f32d

Browse files
committed
feat(gh-577): read incremental_base_backup_id from the response
1 parent 81ddf7a commit d29f32d

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • src/main/java/io/weaviate/client6/v1/api/backup

src/main/java/io/weaviate/client6/v1/api/backup/Backup.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public record Backup(
3535
@SerializedName("completedAt") OffsetDateTime completedAt,
3636
/** Backup size in GiB. */
3737
@SerializedName("size") Float sizeGiB,
38+
/** Prefix for the incremental backup IDs. */
39+
@SerializedName("incremental_base_backup_id") String prefixIncremental,
3840
/**
3941
* This value indicates if a backup is being created or restored from.
4042
* For operations like LIST this value is null.
@@ -55,6 +57,7 @@ Backup withOperation(Operation operation) {
5557
startedAt,
5658
completedAt,
5759
sizeGiB,
60+
prefixIncremental,
5861
operation);
5962
}
6063

0 commit comments

Comments
 (0)