Skip to content

Commit 9ffc59c

Browse files
feat(api): api update
1 parent b9515e9 commit 9ffc59c

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 102
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-aa2f6b7bd5f38374ef743af2f5399fc37358408730dcbb1305e181bb91a2e903.yml
3-
openapi_spec_hash: a3f793428f6b5de9a59ba8c80ee8bbea
4-
config_hash: a74944d06979c9df5e08aee874ae5caa
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-a8e2289b32b616e0bd7e15995a6553d0335bd21e30617a013d07450f8f5a7a20.yml
3+
openapi_spec_hash: cd13a7af1ffe64c7ce8753f87786e01f
4+
config_hash: 457068371129b47b67f0f2d6b8267368

api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ Types:
7373
from runloop_api_client.types import (
7474
DevboxAsyncExecutionDetailView,
7575
DevboxExecutionDetailView,
76+
DevboxKillExecutionRequest,
7677
DevboxListView,
7778
DevboxSnapshotListView,
7879
DevboxSnapshotView,

src/runloop_api_client/resources/devboxes/executions.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,9 @@ def kill(
300300
killing the launched process. Optionally kill the entire process group.
301301
302302
Args:
303+
kill_process_group: Whether to kill the entire process group (default: false). If true, kills all
304+
processes in the same process group as the target process.
305+
303306
extra_headers: Send extra headers
304307
305308
extra_query: Add additional query parameters to the request
@@ -673,6 +676,9 @@ async def kill(
673676
killing the launched process. Optionally kill the entire process group.
674677
675678
Args:
679+
kill_process_group: Whether to kill the entire process group (default: false). If true, kills all
680+
processes in the same process group as the target process.
681+
676682
extra_headers: Send extra headers
677683
678684
extra_query: Add additional query parameters to the request

src/runloop_api_client/types/devboxes/execution_kill_params.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@ class ExecutionKillParams(TypedDict, total=False):
1212
devbox_id: Required[str]
1313

1414
kill_process_group: Optional[bool]
15+
"""Whether to kill the entire process group (default: false).
16+
17+
If true, kills all processes in the same process group as the target process.
18+
"""

0 commit comments

Comments
 (0)