@@ -102,7 +102,6 @@ def with_streaming_response(self) -> DevboxesResourceWithStreamingResponse:
102102 def create (
103103 self ,
104104 * ,
105- available_ports : Iterable [int ] | NotGiven = NOT_GIVEN ,
106105 blueprint_id : str | NotGiven = NOT_GIVEN ,
107106 blueprint_name : str | NotGiven = NOT_GIVEN ,
108107 code_mounts : Iterable [CodeMountParametersParam ] | NotGiven = NOT_GIVEN ,
@@ -128,9 +127,6 @@ def create(
128127 the 'pending' state and will transition to 'running' once it is ready.
129128
130129 Args:
131- available_ports: A list of ports to make available on the Devbox. Call createTunnel to open a
132- tunnel to the port.
133-
134130 blueprint_id: (Optional) Blueprint to use for the Devbox. If none set, the Devbox will be
135131 created with the default Runloop Devbox image.
136132
@@ -173,7 +169,6 @@ def create(
173169 "/v1/devboxes" ,
174170 body = maybe_transform (
175171 {
176- "available_ports" : available_ports ,
177172 "blueprint_id" : blueprint_id ,
178173 "blueprint_name" : blueprint_name ,
179174 "code_mounts" : code_mounts ,
@@ -736,7 +731,6 @@ def with_streaming_response(self) -> AsyncDevboxesResourceWithStreamingResponse:
736731 async def create (
737732 self ,
738733 * ,
739- available_ports : Iterable [int ] | NotGiven = NOT_GIVEN ,
740734 blueprint_id : str | NotGiven = NOT_GIVEN ,
741735 blueprint_name : str | NotGiven = NOT_GIVEN ,
742736 code_mounts : Iterable [CodeMountParametersParam ] | NotGiven = NOT_GIVEN ,
@@ -762,9 +756,6 @@ async def create(
762756 the 'pending' state and will transition to 'running' once it is ready.
763757
764758 Args:
765- available_ports: A list of ports to make available on the Devbox. Call createTunnel to open a
766- tunnel to the port.
767-
768759 blueprint_id: (Optional) Blueprint to use for the Devbox. If none set, the Devbox will be
769760 created with the default Runloop Devbox image.
770761
@@ -807,7 +798,6 @@ async def create(
807798 "/v1/devboxes" ,
808799 body = await async_maybe_transform (
809800 {
810- "available_ports" : available_ports ,
811801 "blueprint_id" : blueprint_id ,
812802 "blueprint_name" : blueprint_name ,
813803 "code_mounts" : code_mounts ,
0 commit comments