@@ -103,7 +103,6 @@ def with_streaming_response(self) -> DevboxesResourceWithStreamingResponse:
103103 def create (
104104 self ,
105105 * ,
106- available_ports : Iterable [int ] | NotGiven = NOT_GIVEN ,
107106 blueprint_id : str | NotGiven = NOT_GIVEN ,
108107 blueprint_name : str | NotGiven = NOT_GIVEN ,
109108 code_mounts : Iterable [CodeMountParametersParam ] | NotGiven = NOT_GIVEN ,
@@ -129,9 +128,6 @@ def create(
129128 the 'pending' state and will transition to 'running' once it is ready.
130129
131130 Args:
132- available_ports: A list of ports to make available on the Devbox. Call createTunnel to open a
133- tunnel to the port.
134-
135131 blueprint_id: (Optional) Blueprint to use for the Devbox. If none set, the Devbox will be
136132 created with the default Runloop Devbox image.
137133
@@ -174,7 +170,6 @@ def create(
174170 "/v1/devboxes" ,
175171 body = maybe_transform (
176172 {
177- "available_ports" : available_ports ,
178173 "blueprint_id" : blueprint_id ,
179174 "blueprint_name" : blueprint_name ,
180175 "code_mounts" : code_mounts ,
@@ -837,7 +832,6 @@ def with_streaming_response(self) -> AsyncDevboxesResourceWithStreamingResponse:
837832 async def create (
838833 self ,
839834 * ,
840- available_ports : Iterable [int ] | NotGiven = NOT_GIVEN ,
841835 blueprint_id : str | NotGiven = NOT_GIVEN ,
842836 blueprint_name : str | NotGiven = NOT_GIVEN ,
843837 code_mounts : Iterable [CodeMountParametersParam ] | NotGiven = NOT_GIVEN ,
@@ -863,9 +857,6 @@ async def create(
863857 the 'pending' state and will transition to 'running' once it is ready.
864858
865859 Args:
866- available_ports: A list of ports to make available on the Devbox. Call createTunnel to open a
867- tunnel to the port.
868-
869860 blueprint_id: (Optional) Blueprint to use for the Devbox. If none set, the Devbox will be
870861 created with the default Runloop Devbox image.
871862
@@ -908,7 +899,6 @@ async def create(
908899 "/v1/devboxes" ,
909900 body = await async_maybe_transform (
910901 {
911- "available_ports" : available_ports ,
912902 "blueprint_id" : blueprint_id ,
913903 "blueprint_name" : blueprint_name ,
914904 "code_mounts" : code_mounts ,
0 commit comments