@@ -97,7 +97,6 @@ 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_handle : str | NotGiven = NOT_GIVEN ,
101100 setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
102101 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
103102 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -134,8 +133,6 @@ def create(
134133
135134 name: (Optional) A user specified name to give the Devbox.
136135
137- prebuilt_handle: Handle to prebuilt.
138-
139136 setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
140137 fetching a tool or building your dependencies. Runloop will look optimize these
141138 steps for you.
@@ -161,7 +158,6 @@ def create(
161158 "launch_parameters" : launch_parameters ,
162159 "metadata" : metadata ,
163160 "name" : name ,
164- "prebuilt_handle" : prebuilt_handle ,
165161 "setup_commands" : setup_commands ,
166162 },
167163 devbox_create_params .DevboxCreateParams ,
@@ -592,7 +588,6 @@ async def create(
592588 launch_parameters : devbox_create_params .LaunchParameters | NotGiven = NOT_GIVEN ,
593589 metadata : Dict [str , str ] | NotGiven = NOT_GIVEN ,
594590 name : str | NotGiven = NOT_GIVEN ,
595- prebuilt_handle : str | NotGiven = NOT_GIVEN ,
596591 setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
597592 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
598593 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -629,8 +624,6 @@ async def create(
629624
630625 name: (Optional) A user specified name to give the Devbox.
631626
632- prebuilt_handle: Handle to prebuilt.
633-
634627 setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
635628 fetching a tool or building your dependencies. Runloop will look optimize these
636629 steps for you.
@@ -656,7 +649,6 @@ async def create(
656649 "launch_parameters" : launch_parameters ,
657650 "metadata" : metadata ,
658651 "name" : name ,
659- "prebuilt_handle" : prebuilt_handle ,
660652 "setup_commands" : setup_commands ,
661653 },
662654 devbox_create_params .DevboxCreateParams ,
0 commit comments