@@ -57,6 +57,7 @@ def create(
5757 code_handle : str | NotGiven = NOT_GIVEN ,
5858 entrypoint : str | NotGiven = NOT_GIVEN ,
5959 environment_variables : Dict [str , str ] | NotGiven = NOT_GIVEN ,
60+ file_mounts : Dict [str , str ] | NotGiven = NOT_GIVEN ,
6061 name : str | NotGiven = NOT_GIVEN ,
6162 setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
6263 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -86,6 +87,8 @@ def create(
8687
8788 environment_variables: (Optional) Environment variables used to configure your Devbox.
8889
90+ file_mounts: (Optional) Map of paths and file contents to write before setup..
91+
8992 name: (Optional) A user specified name to give the Devbox.
9093
9194 setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
@@ -109,6 +112,7 @@ def create(
109112 "code_handle" : code_handle ,
110113 "entrypoint" : entrypoint ,
111114 "environment_variables" : environment_variables ,
115+ "file_mounts" : file_mounts ,
112116 "name" : name ,
113117 "setup_commands" : setup_commands ,
114118 },
@@ -299,6 +303,7 @@ async def create(
299303 code_handle : str | NotGiven = NOT_GIVEN ,
300304 entrypoint : str | NotGiven = NOT_GIVEN ,
301305 environment_variables : Dict [str , str ] | NotGiven = NOT_GIVEN ,
306+ file_mounts : Dict [str , str ] | NotGiven = NOT_GIVEN ,
302307 name : str | NotGiven = NOT_GIVEN ,
303308 setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
304309 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -328,6 +333,8 @@ async def create(
328333
329334 environment_variables: (Optional) Environment variables used to configure your Devbox.
330335
336+ file_mounts: (Optional) Map of paths and file contents to write before setup..
337+
331338 name: (Optional) A user specified name to give the Devbox.
332339
333340 setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
@@ -351,6 +358,7 @@ async def create(
351358 "code_handle" : code_handle ,
352359 "entrypoint" : entrypoint ,
353360 "environment_variables" : environment_variables ,
361+ "file_mounts" : file_mounts ,
354362 "name" : name ,
355363 "setup_commands" : setup_commands ,
356364 },
0 commit comments