---
title: VolumeInfo
sidebar_label: VolumeInfo
sidebar_position: 7
---

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

# VolumeInfo

```python
from lium.sdk import VolumeInfo
```

Defined in `lium.sdk.models`.

Volume information.

```python
VolumeInfo(
    id: str,
    huid: str,
    name: str,
    description: str,
    created_at: str,
    updated_at: Optional[str] = None,
    current_size_bytes: int = 0,
    current_file_count: int = 0,
    current_size_gb: float = 0.0,
    current_size_mb: float = 0.0,
    last_metrics_update: Optional[str] = None
)
```

## Fields

| Name | Type | Default |
| --- | --- | --- |
| `id` | str |  |
| `huid` | str |  |
| `name` | str |  |
| `description` | str |  |
| `created_at` | str |  |
| `updated_at` | Optional[str] | `None` |
| `current_size_bytes` | int | `0` |
| `current_file_count` | int | `0` |
| `current_size_gb` | float | `0.0` |
| `current_size_mb` | float | `0.0` |
| `last_metrics_update` | Optional[str] | `None` |
