@@ -77,6 +77,7 @@ def create(
7777 dockerfile : Optional [str ] | NotGiven = NOT_GIVEN ,
7878 file_mounts : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
7979 launch_parameters : Optional [LaunchParameters ] | NotGiven = NOT_GIVEN ,
80+ metadata : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
8081 services : Optional [Iterable [blueprint_create_params .Service ]] | NotGiven = NOT_GIVEN ,
8182 system_setup_commands : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
8283 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -108,6 +109,8 @@ def create(
108109
109110 launch_parameters: Parameters to configure your Devbox at launch time.
110111
112+ metadata: (Optional) User defined metadata for the Blueprint.
113+
111114 services: (Optional) List of containerized services to include in the Blueprint. These
112115 services will be pre-pulled during the build phase for optimized startup
113116 performance.
@@ -134,6 +137,7 @@ def create(
134137 "dockerfile" : dockerfile ,
135138 "file_mounts" : file_mounts ,
136139 "launch_parameters" : launch_parameters ,
140+ "metadata" : metadata ,
137141 "services" : services ,
138142 "system_setup_commands" : system_setup_commands ,
139143 },
@@ -472,6 +476,7 @@ def preview(
472476 dockerfile : Optional [str ] | NotGiven = NOT_GIVEN ,
473477 file_mounts : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
474478 launch_parameters : Optional [LaunchParameters ] | NotGiven = NOT_GIVEN ,
479+ metadata : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
475480 services : Optional [Iterable [blueprint_preview_params .Service ]] | NotGiven = NOT_GIVEN ,
476481 system_setup_commands : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
477482 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -501,6 +506,8 @@ def preview(
501506
502507 launch_parameters: Parameters to configure your Devbox at launch time.
503508
509+ metadata: (Optional) User defined metadata for the Blueprint.
510+
504511 services: (Optional) List of containerized services to include in the Blueprint. These
505512 services will be pre-pulled during the build phase for optimized startup
506513 performance.
@@ -527,6 +534,7 @@ def preview(
527534 "dockerfile" : dockerfile ,
528535 "file_mounts" : file_mounts ,
529536 "launch_parameters" : launch_parameters ,
537+ "metadata" : metadata ,
530538 "services" : services ,
531539 "system_setup_commands" : system_setup_commands ,
532540 },
@@ -572,6 +580,7 @@ async def create(
572580 dockerfile : Optional [str ] | NotGiven = NOT_GIVEN ,
573581 file_mounts : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
574582 launch_parameters : Optional [LaunchParameters ] | NotGiven = NOT_GIVEN ,
583+ metadata : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
575584 services : Optional [Iterable [blueprint_create_params .Service ]] | NotGiven = NOT_GIVEN ,
576585 system_setup_commands : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
577586 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -603,6 +612,8 @@ async def create(
603612
604613 launch_parameters: Parameters to configure your Devbox at launch time.
605614
615+ metadata: (Optional) User defined metadata for the Blueprint.
616+
606617 services: (Optional) List of containerized services to include in the Blueprint. These
607618 services will be pre-pulled during the build phase for optimized startup
608619 performance.
@@ -629,6 +640,7 @@ async def create(
629640 "dockerfile" : dockerfile ,
630641 "file_mounts" : file_mounts ,
631642 "launch_parameters" : launch_parameters ,
643+ "metadata" : metadata ,
632644 "services" : services ,
633645 "system_setup_commands" : system_setup_commands ,
634646 },
@@ -967,6 +979,7 @@ async def preview(
967979 dockerfile : Optional [str ] | NotGiven = NOT_GIVEN ,
968980 file_mounts : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
969981 launch_parameters : Optional [LaunchParameters ] | NotGiven = NOT_GIVEN ,
982+ metadata : Optional [Dict [str , str ]] | NotGiven = NOT_GIVEN ,
970983 services : Optional [Iterable [blueprint_preview_params .Service ]] | NotGiven = NOT_GIVEN ,
971984 system_setup_commands : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
972985 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -996,6 +1009,8 @@ async def preview(
9961009
9971010 launch_parameters: Parameters to configure your Devbox at launch time.
9981011
1012+ metadata: (Optional) User defined metadata for the Blueprint.
1013+
9991014 services: (Optional) List of containerized services to include in the Blueprint. These
10001015 services will be pre-pulled during the build phase for optimized startup
10011016 performance.
@@ -1022,6 +1037,7 @@ async def preview(
10221037 "dockerfile" : dockerfile ,
10231038 "file_mounts" : file_mounts ,
10241039 "launch_parameters" : launch_parameters ,
1040+ "metadata" : metadata ,
10251041 "services" : services ,
10261042 "system_setup_commands" : system_setup_commands ,
10271043 },
0 commit comments