Resolve an instance by ID.
(instance_id: str)
| 35 | |
| 36 | |
| 37 | def get_instance(instance_id: str) -> Instance: |
| 38 | """Resolve an instance by ID.""" |
| 39 | check_required_vars() |
| 40 | from materialize.scratch import get_instance as _get |
| 41 | |
| 42 | return _get(instance_id) |
| 43 | |
| 44 | |
| 45 | def pick_instance() -> Instance: |