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

# SandboxStatus

> Sandbox lifecycle status values.

Source: [src/cwsandbox/\_sandbox.py:107](https://github.com/coreweave/cwsandbox-client/blob/v0.22.0/src/cwsandbox/_sandbox.py#L107)

Sandbox lifecycle status values.

Lifecycle: CREATING -> RUNNING -> TERMINATING -> COMPLETED | FAILED

## Members

* `RUNNING` = `'running'`
* `CREATING` = `'creating'`
* `PENDING` = `'pending'`
* `PAUSED` = `'paused'`
* `TERMINATING` = `'terminating'`
* `COMPLETED` = `'completed'`
* `FAILED` = `'failed'`
* `TERMINATED` = `'terminated'`
* `UNSPECIFIED` = `'unspecified'`

## Methods

### from\_proto

```python theme={"system"}
from_proto(proto_status: int) -> SandboxStatus
```

Convert protobuf status enum to SandboxStatus.

### to\_proto

```python theme={"system"}
to_proto() -> int
```

Convert SandboxStatus to protobuf enum
