@@ -185,6 +185,7 @@ def create(
185185 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
186186 launch_parameters : Optional [LaunchParameters ] | Omit = omit ,
187187 metadata : Optional [Dict [str , str ]] | Omit = omit ,
188+ mounts : Optional [Iterable [devbox_create_params .Mount ]] | Omit = omit ,
188189 name : Optional [str ] | Omit = omit ,
189190 repo_connection_id : Optional [str ] | Omit = omit ,
190191 secrets : Optional [Dict [str , str ]] | Omit = omit ,
@@ -228,6 +229,8 @@ def create(
228229
229230 metadata: User defined metadata to attach to the devbox for organization.
230231
232+ mounts: A list of file system mounts to be included in the Devbox.
233+
231234 name: (Optional) A user specified name to give the Devbox.
232235
233236 repo_connection_id: Repository connection id the devbox should source its base image from.
@@ -262,6 +265,7 @@ def create(
262265 "file_mounts" : file_mounts ,
263266 "launch_parameters" : launch_parameters ,
264267 "metadata" : metadata ,
268+ "mounts" : mounts ,
265269 "name" : name ,
266270 "repo_connection_id" : repo_connection_id ,
267271 "secrets" : secrets ,
@@ -740,7 +744,7 @@ def execute(
740744 specified the command is run from the directory based on the recent state of the
741745 persistent shell.
742746
743- command_id: The command ID for idempotency and tracking
747+ command_id: The command ID in UUIDv7 string format for idempotency and tracking
744748
745749 optimistic_timeout: Timeout in seconds to wait for command completion. Operation is not killed. Max
746750 is 600 seconds.
@@ -1633,6 +1637,7 @@ async def create(
16331637 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
16341638 launch_parameters : Optional [LaunchParameters ] | Omit = omit ,
16351639 metadata : Optional [Dict [str , str ]] | Omit = omit ,
1640+ mounts : Optional [Iterable [devbox_create_params .Mount ]] | Omit = omit ,
16361641 name : Optional [str ] | Omit = omit ,
16371642 repo_connection_id : Optional [str ] | Omit = omit ,
16381643 secrets : Optional [Dict [str , str ]] | Omit = omit ,
@@ -1676,6 +1681,8 @@ async def create(
16761681
16771682 metadata: User defined metadata to attach to the devbox for organization.
16781683
1684+ mounts: A list of file system mounts to be included in the Devbox.
1685+
16791686 name: (Optional) A user specified name to give the Devbox.
16801687
16811688 repo_connection_id: Repository connection id the devbox should source its base image from.
@@ -1710,6 +1717,7 @@ async def create(
17101717 "file_mounts" : file_mounts ,
17111718 "launch_parameters" : launch_parameters ,
17121719 "metadata" : metadata ,
1720+ "mounts" : mounts ,
17131721 "name" : name ,
17141722 "repo_connection_id" : repo_connection_id ,
17151723 "secrets" : secrets ,
@@ -2187,7 +2195,7 @@ async def execute(
21872195 specified the command is run from the directory based on the recent state of the
21882196 persistent shell.
21892197
2190- command_id: The command ID for idempotency and tracking
2198+ command_id: The command ID in UUIDv7 string format for idempotency and tracking
21912199
21922200 optimistic_timeout: Timeout in seconds to wait for command completion. Operation is not killed. Max
21932201 is 600 seconds.
0 commit comments