TL;DR
- Use when: Launched multiple async operations
- Returns: All operation results
- Cost: No VM needed (just waiting)
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
operation_ids | array | Yes | - | List of operation UUIDs |
mode | string | No | "all" | "all" or "any" |
timeout | number | No | 300 | Max wait time (seconds) |
Response
Examples
Wait for All
Wait for Any (First to Complete)
With Timeout
Parallel Execution Pattern
See Also
- get_operation - Check single operation
- Async Guide - Parallel execution patterns