> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/dsx-air/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/dsx-air/_mcp/server.

# air_sdk.endpoints.systems

## Classes

| Name                                                             | Description                                             |
| ---------------------------------------------------------------- | ------------------------------------------------------- |
| [`System`](#air_sdkendpointssystemssystem)                       | System model representing a system in the AIR platform. |
| [`SystemEndpointAPI`](#air_sdkendpointssystemssystemendpointapi) | Endpoint API for System operations.                     |

## Module Contents

```python
class air_sdk.endpoints.systems.System
```

**Bases**: `air_sdk.bc.BaseCompatMixin`, `air_sdk.air_model.AirModel`

System model representing a system in the AIR platform.

```python
id: str
```

```python
created: datetime.datetime = field(...)
```

```python
modified: datetime.datetime = field(...)
```

```python
name: str
```

```python
simulation: Simulation | None = field(...)
```

```python
image: Image = field(...)
```

```python
memory: int = field(...)
```

```python
storage: int = field(...)
```

```python
cpu: int = field(...)
```

```python
category: str = field(...)
```

```python
attributes: dict[str, Any] | None = field(...)
```

```python
get_model_api() -> type[SystemEndpointAPI]
```

Returns the respective `AirModelAPI` type for this model

```python
model_api: SystemEndpointAPI
```

The current model API instance.

```python
class air_sdk.endpoints.systems.SystemEndpointAPI
```

**Bases**: `air_sdk.endpoints.mixins.ListApiMixin[air_sdk.endpoints.systems.System]`, `air_sdk.endpoints.mixins.GetApiMixin[air_sdk.endpoints.systems.System]`, `air_sdk.air_model.BaseEndpointAPI[air_sdk.endpoints.systems.System]`

Endpoint API for System operations.

```python
API_PATH = systems/nodes
```

```python
model
```