(self, *, limit: int = 100, offset: int = 0)
| 433 | return [_sandbox_ref(item) for item in response.sandboxes] |
| 434 | |
| 435 | def list_ids(self, *, limit: int = 100, offset: int = 0) -> builtins.list[str]: |
| 436 | return [item.id for item in self.list(limit=limit, offset=offset)] |
| 437 | |
| 438 | def delete(self, sandbox_name: str) -> bool: |
| 439 | response = self._stub.DeleteSandbox( |