Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/prime/src/prime_cli/commands/sandbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,14 +538,15 @@ def delete(
sandbox_ids: Optional[List[str]] = typer.Argument(
None, help="Sandbox ID(s) to delete (space or comma-separated)"
),
all: bool = typer.Option(False, "--all", help="Delete all sandboxes"),
all: bool = typer.Option(False, "--all", "-a", help="Delete all sandboxes"),
labels: Optional[List[str]] = typer.Option(
None, "--label", "-l", help="Delete all sandboxes with ALL these labels"
),
yes: bool = typer.Option(False, "--yes", "-y", help="Skip confirmation prompt"),
only_mine: bool = typer.Option(
True,
"--only-mine/--all-users",
"-m/-A",
help="Restrict '--all' deletes to only your sandboxes",
show_default=True,
),
Expand Down
5 changes: 3 additions & 2 deletions packages/prime/src/prime_cli/commands/tunnel.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def stop_tunnel(
tunnel_ids: Optional[List[str]] = typer.Argument(
None, help="Tunnel ID(s) to stop (space or comma-separated)"
),
all: bool = typer.Option(False, "--all", help="Stop all tunnels"),
all: bool = typer.Option(False, "--all", "-a", help="Stop all tunnels"),
team_id: Optional[str] = typer.Option(
None,
"--team-id",
Expand All @@ -151,7 +151,8 @@ def stop_tunnel(
only_mine: bool = typer.Option(
True,
"--only-mine/--all-users",
help="Restrict '--all' deletes to only your tunnels (default: only yours)",
"-m/-A",
help="Restrict '--all' deletes to only your tunnels",
show_default=True,
),
) -> None:
Expand Down
Loading