-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevboxes.py
More file actions
2855 lines (2454 loc) · 110 KB
/
devboxes.py
File metadata and controls
2855 lines (2454 loc) · 110 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing import Dict, Mapping, Iterable, Optional, cast
from typing_extensions import Literal
import httpx
from .lsp import (
LspResource,
AsyncLspResource,
LspResourceWithRawResponse,
AsyncLspResourceWithRawResponse,
LspResourceWithStreamingResponse,
AsyncLspResourceWithStreamingResponse,
)
from .logs import (
LogsResource,
AsyncLogsResource,
LogsResourceWithRawResponse,
AsyncLogsResourceWithRawResponse,
LogsResourceWithStreamingResponse,
AsyncLogsResourceWithStreamingResponse,
)
from ...types import (
devbox_list_params,
devbox_create_params,
devbox_update_params,
devbox_upload_file_params,
devbox_execute_sync_params,
devbox_create_tunnel_params,
devbox_download_file_params,
devbox_execute_async_params,
devbox_remove_tunnel_params,
devbox_snapshot_disk_params,
devbox_read_file_contents_params,
devbox_list_disk_snapshots_params,
devbox_write_file_contents_params,
)
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven, FileTypes
from ..._utils import (
extract_files,
maybe_transform,
deepcopy_minimal,
async_maybe_transform,
)
from .browsers import (
BrowsersResource,
AsyncBrowsersResource,
BrowsersResourceWithRawResponse,
AsyncBrowsersResourceWithRawResponse,
BrowsersResourceWithStreamingResponse,
AsyncBrowsersResourceWithStreamingResponse,
)
from ..._compat import cached_property
from .computers import (
ComputersResource,
AsyncComputersResource,
ComputersResourceWithRawResponse,
AsyncComputersResourceWithRawResponse,
ComputersResourceWithStreamingResponse,
AsyncComputersResourceWithStreamingResponse,
)
from .executions import (
ExecutionsResource,
AsyncExecutionsResource,
ExecutionsResourceWithRawResponse,
AsyncExecutionsResourceWithRawResponse,
ExecutionsResourceWithStreamingResponse,
AsyncExecutionsResourceWithStreamingResponse,
)
from ..._resource import SyncAPIResource, AsyncAPIResource
from ..._response import (
BinaryAPIResponse,
AsyncBinaryAPIResponse,
StreamedBinaryAPIResponse,
AsyncStreamedBinaryAPIResponse,
to_raw_response_wrapper,
to_streamed_response_wrapper,
async_to_raw_response_wrapper,
to_custom_raw_response_wrapper,
async_to_streamed_response_wrapper,
to_custom_streamed_response_wrapper,
async_to_custom_raw_response_wrapper,
async_to_custom_streamed_response_wrapper,
)
from ...pagination import (
SyncDevboxesCursorIDPage,
AsyncDevboxesCursorIDPage,
SyncDiskSnapshotsCursorIDPage,
AsyncDiskSnapshotsCursorIDPage,
)
from ..._exceptions import RunloopError
from ...lib.polling import PollingConfig, poll_until
from ..._base_client import AsyncPaginator, make_request_options
from .disk_snapshots import (
DiskSnapshotsResource,
AsyncDiskSnapshotsResource,
DiskSnapshotsResourceWithRawResponse,
AsyncDiskSnapshotsResourceWithRawResponse,
DiskSnapshotsResourceWithStreamingResponse,
AsyncDiskSnapshotsResourceWithStreamingResponse,
)
from ...lib.polling_async import async_poll_until
from ...types.devbox_view import DevboxView
from ...types.devbox_tunnel_view import DevboxTunnelView
from ...types.devbox_snapshot_view import DevboxSnapshotView
from ...types.devbox_execution_detail_view import DevboxExecutionDetailView
from ...types.devbox_create_ssh_key_response import DevboxCreateSSHKeyResponse
from ...types.shared_params.launch_parameters import LaunchParameters
from ...types.devbox_async_execution_detail_view import DevboxAsyncExecutionDetailView
from ...types.shared_params.code_mount_parameters import CodeMountParameters
__all__ = ["DevboxesResource", "AsyncDevboxesResource"]
DEVBOX_BOOTING_STATES = frozenset(('provisioning', 'initializing'))
class DevboxesResource(SyncAPIResource):
@cached_property
def disk_snapshots(self) -> DiskSnapshotsResource:
return DiskSnapshotsResource(self._client)
@cached_property
def browsers(self) -> BrowsersResource:
return BrowsersResource(self._client)
@cached_property
def computers(self) -> ComputersResource:
return ComputersResource(self._client)
@cached_property
def lsp(self) -> LspResource:
return LspResource(self._client)
@cached_property
def logs(self) -> LogsResource:
return LogsResource(self._client)
@cached_property
def executions(self) -> ExecutionsResource:
return ExecutionsResource(self._client)
@cached_property
def with_raw_response(self) -> DevboxesResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/runloopai/api-client-python#accessing-raw-response-data-eg-headers
"""
return DevboxesResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> DevboxesResourceWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/runloopai/api-client-python#with_streaming_response
"""
return DevboxesResourceWithStreamingResponse(self)
def create(
self,
*,
blueprint_id: Optional[str] | NotGiven = NOT_GIVEN,
blueprint_name: Optional[str] | NotGiven = NOT_GIVEN,
code_mounts: Optional[Iterable[CodeMountParameters]] | NotGiven = NOT_GIVEN,
entrypoint: Optional[str] | NotGiven = NOT_GIVEN,
environment_variables: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
file_mounts: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
launch_parameters: Optional[LaunchParameters] | NotGiven = NOT_GIVEN,
metadata: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
name: Optional[str] | NotGiven = NOT_GIVEN,
prebuilt: Optional[str] | NotGiven = NOT_GIVEN,
snapshot_id: Optional[str] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> DevboxView:
"""Create a Devbox and begin the boot process.
The Devbox will initially launch in
the 'provisioning' state while Runloop allocates the necessary infrastructure.
It will transition to the 'initializing' state while the booted Devbox runs any
Runloop or user defined set up scripts. Finally, the Devbox will transition to
the 'running' state when it is ready for use.
Args:
blueprint_id: Blueprint ID to use for the Devbox. If none set, the Devbox will be created with
the default Runloop Devbox image. Only one of (Snapshot ID, Blueprint ID,
Blueprint name) should be specified.
blueprint_name: Name of Blueprint to use for the Devbox. When set, this will load the latest
successfully built Blueprint with the given name. Only one of (Snapshot ID,
Blueprint ID, Blueprint name) should be specified.
code_mounts: A list of code mounts to be included in the Devbox.
entrypoint: (Optional) When specified, the Devbox will run this script as its main
executable. The devbox lifecycle will be bound to entrypoint, shutting down when
the process is complete.
environment_variables: (Optional) Environment variables used to configure your Devbox.
file_mounts: (Optional) Map of paths and file contents to write before setup..
launch_parameters: Parameters to configure the resources and launch time behavior of the Devbox.
metadata: User defined metadata to attach to the devbox for organization.
name: (Optional) A user specified name to give the Devbox.
prebuilt: Reference to prebuilt Blueprint to create the Devbox from. Should not be used
together with (Snapshot ID, Blueprint ID, or Blueprint name).
snapshot_id: Snapshot ID to use for the Devbox. Only one of (Snapshot ID, Blueprint ID,
Blueprint name) should be specified.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
return self._post(
"/v1/devboxes",
body=maybe_transform(
{
"blueprint_id": blueprint_id,
"blueprint_name": blueprint_name,
"code_mounts": code_mounts,
"entrypoint": entrypoint,
"environment_variables": environment_variables,
"file_mounts": file_mounts,
"launch_parameters": launch_parameters,
"metadata": metadata,
"name": name,
"prebuilt": prebuilt,
"snapshot_id": snapshot_id,
},
devbox_create_params.DevboxCreateParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=DevboxView,
)
def retrieve(
self,
id: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> DevboxView:
"""
Get the latest details and status of a Devbox.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
return self._get(
f"/v1/devboxes/{id}",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=DevboxView,
)
def update(
self,
id: str,
*,
metadata: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
name: Optional[str] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> DevboxView:
"""
Updates a devbox by doing a complete update the existing name,metadata fields.
It does not patch partial values.
Args:
metadata: User defined metadata to attach to the devbox for organization.
name: (Optional) A user specified name to give the Devbox.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
return self._post(
f"/v1/devboxes/{id}",
body=maybe_transform(
{
"metadata": metadata,
"name": name,
},
devbox_update_params.DevboxUpdateParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=DevboxView,
)
def await_running(
self,
id: str,
*,
polling_config: PollingConfig | None = None,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> DevboxView:
"""Wait for a devbox to be in running state.
Args:
id: The ID of the devbox to wait for
config: Optional polling configuration
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
Returns:
The devbox in running state
Raises:
PollingTimeout: If polling times out before devbox is running
RunloopError: If devbox enters a non-running terminal state
"""
def retrieve_devbox() -> DevboxView:
return self.retrieve(
id,
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout
)
def is_done_booting(devbox: DevboxView) -> bool:
return devbox.status not in DEVBOX_BOOTING_STATES
devbox = poll_until(retrieve_devbox, is_done_booting, polling_config)
if devbox.status != "running":
raise RunloopError(
f"Devbox entered non-running terminal state: {devbox.status}"
)
return devbox
def create_and_await_running(
self,
*,
blueprint_id: str | NotGiven = NOT_GIVEN,
blueprint_name: str | NotGiven = NOT_GIVEN,
code_mounts: Optional[Iterable[CodeMountParameters]] | NotGiven = NOT_GIVEN,
entrypoint: str | NotGiven = NOT_GIVEN,
environment_variables: Dict[str, str] | NotGiven = NOT_GIVEN,
file_mounts: Dict[str, str] | NotGiven = NOT_GIVEN,
launch_parameters: LaunchParameters | NotGiven = NOT_GIVEN,
metadata: Dict[str, str] | NotGiven = NOT_GIVEN,
name: str | NotGiven = NOT_GIVEN,
prebuilt: str | NotGiven = NOT_GIVEN,
snapshot_id: str | NotGiven = NOT_GIVEN,
polling_config: PollingConfig | None = None,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> DevboxView:
"""Create a new devbox and wait for it to be in running state.
Args:
blueprint_id: The ID of the blueprint to use
blueprint_name: The name of the blueprint to use
code_mounts: Code mount parameters
entrypoint: The entrypoint command
environment_variables: Environment variables
file_mounts: File mount parameters
launch_parameters: Launch parameters
metadata: Metadata key-value pairs
name: The name of the devbox
prebuilt: The prebuilt image to use
snapshot_id: The ID of the snapshot to restore from
polling_config: Optional polling configuration
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
Returns:
The devbox in running state
Raises:
PollingTimeout: If polling times out before devbox is running
RunloopError: If devbox enters a non-running terminal state
"""
devbox = self.create(
blueprint_id=blueprint_id,
blueprint_name=blueprint_name,
code_mounts=code_mounts,
entrypoint=entrypoint,
environment_variables=environment_variables,
file_mounts=file_mounts,
launch_parameters=launch_parameters,
metadata=metadata,
name=name,
prebuilt=prebuilt,
snapshot_id=snapshot_id,
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
)
return self.await_running(
devbox.id,
polling_config=polling_config,
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
)
def list(
self,
*,
limit: int | NotGiven = NOT_GIVEN,
starting_after: str | NotGiven = NOT_GIVEN,
status: Literal[
"provisioning", "initializing", "running", "suspending", "suspended", "resuming", "failure", "shutdown"
]
| NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> SyncDevboxesCursorIDPage[DevboxView]:
"""
List all Devboxes while optionally filtering by status.
Args:
limit: The limit of items to return. Default is 20.
starting_after: Load the next page of data starting after the item with the given ID.
status: Filter by status
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._get_api_list(
"/v1/devboxes",
page=SyncDevboxesCursorIDPage[DevboxView],
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"limit": limit,
"starting_after": starting_after,
"status": status,
},
devbox_list_params.DevboxListParams,
),
),
model=DevboxView,
)
def create_ssh_key(
self,
id: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> DevboxCreateSSHKeyResponse:
"""
Create an SSH key for a Devbox to enable remote access.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
return self._post(
f"/v1/devboxes/{id}/create_ssh_key",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=DevboxCreateSSHKeyResponse,
)
def create_tunnel(
self,
id: str,
*,
port: int,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> DevboxTunnelView:
"""Create a live tunnel to an available port on the Devbox.
Note the port must be
made available using Devbox.create.availablePorts. Otherwise, the tunnel will
not connect to any running processes on the Devbox.
Args:
port: Devbox port that tunnel will expose.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
return self._post(
f"/v1/devboxes/{id}/create_tunnel",
body=maybe_transform({"port": port}, devbox_create_tunnel_params.DevboxCreateTunnelParams),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=DevboxTunnelView,
)
def delete_disk_snapshot(
self,
id: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> object:
"""
Delete a previously taken disk snapshot of a Devbox.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
return self._post(
f"/v1/devboxes/disk_snapshots/{id}/delete",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=object,
)
def download_file(
self,
id: str,
*,
path: str,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> BinaryAPIResponse:
"""
Download file contents of any type (binary, text, etc) from a specified path on
the Devbox.
Args:
path: The path on the Devbox filesystem to read the file from. Path is relative to
user home directory.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
extra_headers = {"Accept": "application/octet-stream", **(extra_headers or {})}
return self._post(
f"/v1/devboxes/{id}/download_file",
body=maybe_transform({"path": path}, devbox_download_file_params.DevboxDownloadFileParams),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=BinaryAPIResponse,
)
def execute_async(
self,
id: str,
*,
command: str,
shell_name: Optional[str] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> DevboxAsyncExecutionDetailView:
"""
Execute the given command in the Devbox shell asynchronously and returns the
execution that can be used to track the command's progress.
Args:
command: The command to execute via the Devbox shell. By default, commands are run from
the user home directory unless shell_name is specified. If shell_name is
specified the command is run from the directory based on the recent state of the
persistent shell.
shell_name: The name of the persistent shell to create or use if already created. When using
a persistent shell, the command will run from the directory at the end of the
previous command and environment variables will be preserved.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
return self._post(
f"/v1/devboxes/{id}/execute_async",
body=maybe_transform(
{
"command": command,
"shell_name": shell_name,
},
devbox_execute_async_params.DevboxExecuteAsyncParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=DevboxAsyncExecutionDetailView,
)
def execute_sync(
self,
id: str,
*,
command: str,
shell_name: Optional[str] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> DevboxExecutionDetailView:
"""
Execute a bash command in the Devbox shell, await the command completion and
return the output.
Args:
command: The command to execute via the Devbox shell. By default, commands are run from
the user home directory unless shell_name is specified. If shell_name is
specified the command is run from the directory based on the recent state of the
persistent shell.
shell_name: The name of the persistent shell to create or use if already created. When using
a persistent shell, the command will run from the directory at the end of the
previous command and environment variables will be preserved.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
return self._post(
f"/v1/devboxes/{id}/execute_sync",
body=maybe_transform(
{
"command": command,
"shell_name": shell_name,
},
devbox_execute_sync_params.DevboxExecuteSyncParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=DevboxExecutionDetailView,
)
def keep_alive(
self,
id: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> object:
"""
Send a 'Keep Alive' signal to a running Devbox that is configured to shutdown on
idle so the idle time resets.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
return self._post(
f"/v1/devboxes/{id}/keep_alive",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=object,
)
def list_disk_snapshots(
self,
*,
devbox_id: str | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
starting_after: str | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> SyncDiskSnapshotsCursorIDPage[DevboxSnapshotView]:
"""
List all snapshots of a Devbox while optionally filtering by Devbox ID.
Args:
devbox_id: Devbox ID to filter by.
limit: The limit of items to return. Default is 20.
starting_after: Load the next page of data starting after the item with the given ID.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._get_api_list(
"/v1/devboxes/disk_snapshots",
page=SyncDiskSnapshotsCursorIDPage[DevboxSnapshotView],
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"devbox_id": devbox_id,
"limit": limit,
"starting_after": starting_after,
},
devbox_list_disk_snapshots_params.DevboxListDiskSnapshotsParams,
),
),
model=DevboxSnapshotView,
)
def read_file_contents(
self,
id: str,
*,
file_path: str,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> str:
"""Read file contents from a file on a Devbox as a UTF-8.
Note 'downloadFile'
should be used for large files (greater than 100MB). Returns the file contents
as a UTF-8 string.
Args:
file_path: The path on the Devbox filesystem to read the file from. Path is relative to
user home directory.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
extra_headers = {"Accept": "text/plain", **(extra_headers or {})}
return self._post(
f"/v1/devboxes/{id}/read_file_contents",
body=maybe_transform(
{"file_path": file_path}, devbox_read_file_contents_params.DevboxReadFileContentsParams
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=str,
)
def remove_tunnel(
self,
id: str,
*,
port: int,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> DevboxTunnelView:
"""
Remove a previously opened tunnel on the Devbox.
Args:
port: Devbox port that tunnel will expose.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
return self._post(
f"/v1/devboxes/{id}/remove_tunnel",
body=maybe_transform({"port": port}, devbox_remove_tunnel_params.DevboxRemoveTunnelParams),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,