WeaviateEx.Backup.Status.BackupInfo (WeaviateEx v0.7.4)

View Source

Backup metadata from list operation.

Includes timing information and size metrics when available:

  • started_at - When the backup started
  • completed_at - When the backup completed
  • size_bytes - Total size of the backup in bytes

Summary

Types

t()

@type t() :: %WeaviateEx.Backup.Status.BackupInfo{
  backend: atom(),
  collections: [String.t()],
  completed_at: DateTime.t() | nil,
  error: String.t() | nil,
  id: String.t(),
  path: String.t(),
  size_bytes: non_neg_integer() | nil,
  started_at: DateTime.t() | nil,
  status: atom()
}