@@ -97,6 +97,7 @@ def create(
9797 launch_parameters : devbox_create_params .LaunchParameters | NotGiven = NOT_GIVEN ,
9898 metadata : Dict [str , str ] | NotGiven = NOT_GIVEN ,
9999 name : str | NotGiven = NOT_GIVEN ,
100+ prebuilt : str | NotGiven = NOT_GIVEN ,
100101 setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
101102 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
102103 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -133,6 +134,8 @@ def create(
133134
134135 name: (Optional) A user specified name to give the Devbox.
135136
137+ prebuilt: Handle to prebuilt.
138+
136139 setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
137140 fetching a tool or building your dependencies. Runloop will look optimize these
138141 steps for you.
@@ -158,6 +161,7 @@ def create(
158161 "launch_parameters" : launch_parameters ,
159162 "metadata" : metadata ,
160163 "name" : name ,
164+ "prebuilt" : prebuilt ,
161165 "setup_commands" : setup_commands ,
162166 },
163167 devbox_create_params .DevboxCreateParams ,
@@ -588,6 +592,7 @@ async def create(
588592 launch_parameters : devbox_create_params .LaunchParameters | NotGiven = NOT_GIVEN ,
589593 metadata : Dict [str , str ] | NotGiven = NOT_GIVEN ,
590594 name : str | NotGiven = NOT_GIVEN ,
595+ prebuilt : str | NotGiven = NOT_GIVEN ,
591596 setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
592597 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
593598 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -624,6 +629,8 @@ async def create(
624629
625630 name: (Optional) A user specified name to give the Devbox.
626631
632+ prebuilt: Handle to prebuilt.
633+
627634 setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
628635 fetching a tool or building your dependencies. Runloop will look optimize these
629636 steps for you.
@@ -649,6 +656,7 @@ async def create(
649656 "launch_parameters" : launch_parameters ,
650657 "metadata" : metadata ,
651658 "name" : name ,
659+ "prebuilt" : prebuilt ,
652660 "setup_commands" : setup_commands ,
653661 },
654662 devbox_create_params .DevboxCreateParams ,
0 commit comments