---
title: BackupLog
sidebar_label: BackupLog
sidebar_position: 5
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lium.io/llms.txt
> Use this file to discover all available pages before exploring further.

<!-- Generated by scripts/generate_sdk_reference.py. Do not edit directly. -->

# BackupLog

```python
from lium.sdk import BackupLog
```

Defined in `lium.sdk.models`.

Backup log information.

```python
BackupLog(
    id: str,
    huid: str,
    backup_config_id: str,
    status: str,
    started_at: str,
    completed_at: Optional[str] = None,
    error_message: Optional[str] = None,
    progress: Optional[float] = None,
    backup_volume_id: Optional[str] = None,
    created_at: Optional[str] = None
)
```

## Fields

| Name | Type | Default |
| --- | --- | --- |
| `id` | str |  |
| `huid` | str |  |
| `backup_config_id` | str |  |
| `status` | str |  |
| `started_at` | str |  |
| `completed_at` | Optional[str] | `None` |
| `error_message` | Optional[str] | `None` |
| `progress` | Optional[float] | `None` |
| `backup_volume_id` | Optional[str] | `None` |
| `created_at` | Optional[str] | `None` |
