22
33from __future__ import annotations
44
5- from typing import Dict , List , Mapping , Iterable , cast
5+ from typing import Dict , Mapping , Iterable , cast
66
77import httpx
88
@@ -126,7 +126,6 @@ def create(
126126 metadata : Dict [str , str ] | NotGiven = NOT_GIVEN ,
127127 name : str | NotGiven = NOT_GIVEN ,
128128 prebuilt : str | NotGiven = NOT_GIVEN ,
129- setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
130129 snapshot_id : str | NotGiven = NOT_GIVEN ,
131130 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
132131 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -165,10 +164,6 @@ def create(
165164
166165 prebuilt: Reference to prebuilt Blueprint.
167166
168- setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
169- fetching a tool or building your dependencies. Runloop will look optimize these
170- steps for you.
171-
172167 snapshot_id: Snapshot ID to use for the Devbox.
173168
174169 extra_headers: Send extra headers
@@ -193,7 +188,6 @@ def create(
193188 "metadata" : metadata ,
194189 "name" : name ,
195190 "prebuilt" : prebuilt ,
196- "setup_commands" : setup_commands ,
197191 "snapshot_id" : snapshot_id ,
198192 },
199193 devbox_create_params .DevboxCreateParams ,
@@ -896,7 +890,6 @@ async def create(
896890 metadata : Dict [str , str ] | NotGiven = NOT_GIVEN ,
897891 name : str | NotGiven = NOT_GIVEN ,
898892 prebuilt : str | NotGiven = NOT_GIVEN ,
899- setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
900893 snapshot_id : str | NotGiven = NOT_GIVEN ,
901894 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
902895 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -935,10 +928,6 @@ async def create(
935928
936929 prebuilt: Reference to prebuilt Blueprint.
937930
938- setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
939- fetching a tool or building your dependencies. Runloop will look optimize these
940- steps for you.
941-
942931 snapshot_id: Snapshot ID to use for the Devbox.
943932
944933 extra_headers: Send extra headers
@@ -963,7 +952,6 @@ async def create(
963952 "metadata" : metadata ,
964953 "name" : name ,
965954 "prebuilt" : prebuilt ,
966- "setup_commands" : setup_commands ,
967955 "snapshot_id" : snapshot_id ,
968956 },
969957 devbox_create_params .DevboxCreateParams ,
0 commit comments