@@ -67,6 +67,7 @@ def create(
6767 environment_variables : Dict [str , str ] | NotGiven = NOT_GIVEN ,
6868 file_mounts : Dict [str , str ] | NotGiven = NOT_GIVEN ,
6969 launch_parameters : devbox_create_params .LaunchParameters | NotGiven = NOT_GIVEN ,
70+ metadata : Dict [str , str ] | NotGiven = NOT_GIVEN ,
7071 name : str | NotGiven = NOT_GIVEN ,
7172 setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
7273 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -98,6 +99,8 @@ def create(
9899
99100 launch_parameters: Parameters to configure the resources and launch time behavior of the Devbox.
100101
102+ metadata: User defined metadata to attach to the devbox for organization.
103+
101104 name: (Optional) A user specified name to give the Devbox.
102105
103106 setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
@@ -122,6 +125,7 @@ def create(
122125 "environment_variables" : environment_variables ,
123126 "file_mounts" : file_mounts ,
124127 "launch_parameters" : launch_parameters ,
128+ "metadata" : metadata ,
125129 "name" : name ,
126130 "setup_commands" : setup_commands ,
127131 },
@@ -447,6 +451,7 @@ async def create(
447451 environment_variables : Dict [str , str ] | NotGiven = NOT_GIVEN ,
448452 file_mounts : Dict [str , str ] | NotGiven = NOT_GIVEN ,
449453 launch_parameters : devbox_create_params .LaunchParameters | NotGiven = NOT_GIVEN ,
454+ metadata : Dict [str , str ] | NotGiven = NOT_GIVEN ,
450455 name : str | NotGiven = NOT_GIVEN ,
451456 setup_commands : List [str ] | NotGiven = NOT_GIVEN ,
452457 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -478,6 +483,8 @@ async def create(
478483
479484 launch_parameters: Parameters to configure the resources and launch time behavior of the Devbox.
480485
486+ metadata: User defined metadata to attach to the devbox for organization.
487+
481488 name: (Optional) A user specified name to give the Devbox.
482489
483490 setup_commands: (Optional) List of commands needed to set up your Devbox. Examples might include
@@ -502,6 +509,7 @@ async def create(
502509 "environment_variables" : environment_variables ,
503510 "file_mounts" : file_mounts ,
504511 "launch_parameters" : launch_parameters ,
512+ "metadata" : metadata ,
505513 "name" : name ,
506514 "setup_commands" : setup_commands ,
507515 },
0 commit comments