AsyncCheckpointManager
Lists, resolves, waits for, and deletes checkpoints asynchronously.
Async · Sync counterpart:
CheckpointManager
AsyncCheckpointManager declaration
Section titled “AsyncCheckpointManager declaration”class AsyncCheckpointManager(_SdkOwnedHandle):AsyncCheckpointManager access
Section titled “AsyncCheckpointManager access”This type is created by the SDK; do not construct it directly.
manager = client.checkpointsAsyncCheckpointManager methods
Section titled “AsyncCheckpointManager methods”list()
Section titled “list()”List user-created tenant checkpoints.
async def list() -> list[CheckpointInfo]Returns
Section titled “Returns”list[CheckpointInfo]
Resolve a checkpoint by UUID or display name.
async def get(id: str) -> CheckpointInfoParameters
Section titled “Parameters”| Name | Type | Default | Description |
|---|---|---|---|
id |
str |
— |
Resource UUID or display name. |
Returns
Section titled “Returns”CheckpointInfo
wait_until_ready()
Section titled “wait_until_ready()”Wait until a checkpoint is ready or has failed.
async def wait_until_ready(id: str, *, timeout: float = 240.0, poll_interval: float = 0.5) -> CheckpointInfoParameters
Section titled “Parameters”| Name | Type | Default | Description |
|---|---|---|---|
id |
str |
— |
Resource UUID or display name. |
timeout |
float |
240.0 |
Maximum operation time in seconds. |
poll_interval |
float |
0.5 |
Seconds between status checks. |
Returns
Section titled “Returns”CheckpointInfo
delete()
Section titled “delete()”Delete a checkpoint by UUID or display name.
async def delete(id: str) -> NoneParameters
Section titled “Parameters”| Name | Type | Default | Description |
|---|---|---|---|
id |
str |
— |
Resource UUID or display name. |
