---
title: ClusterOffer
sidebar_label: ClusterOffer
sidebar_position: 15
---

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

# ClusterOffer

```python
from lium.sdk import ClusterOffer
```

Defined in `lium.sdk.models`.

A group of free nodes on one RDMA fabric that can be rented as a single multi-node job.

``node_count`` is the whole fabric; ``nodes`` are the members free right now. Every node
of a cluster rental is taken whole (all its GPUs), so the price of an N-node cluster is
the sum of the N nodes' ``price_per_hour``.

```python
ClusterOffer(
    fabric_id: str,
    fabric_type: str,
    link_rate: Optional[str],
    fabric_measured: bool,
    node_count: int,
    nodes: List[lium.sdk.models.ExecutorInfo]
)
```
