---
title: BackupConfig
sidebar_label: BackupConfig
sidebar_position: 4
---

> ## 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. -->

# BackupConfig

```python
from lium.sdk import BackupConfig
```

Defined in `lium.sdk.models`.

Backup configuration information.

```python
BackupConfig(
    id: str,
    huid: str,
    pod_executor_id: str,
    backup_frequency_hours: int,
    retention_days: int,
    backup_path: str,
    is_active: bool,
    created_at: str,
    updated_at: Optional[str] = None
)
```

## Fields

| Name | Type | Default |
| --- | --- | --- |
| `id` | str |  |
| `huid` | str |  |
| `pod_executor_id` | str |  |
| `backup_frequency_hours` | int |  |
| `retention_days` | int |  |
| `backup_path` | str |  |
| `is_active` | bool |  |
| `created_at` | str |  |
| `updated_at` | Optional[str] | `None` |
