@@ -74,6 +74,7 @@ def create(
7474 name : str ,
7575 base_blueprint_id : Optional [str ] | Omit = omit ,
7676 base_blueprint_name : Optional [str ] | Omit = omit ,
77+ build_args : Optional [Dict [str , str ]] | Omit = omit ,
7778 code_mounts : Optional [Iterable [CodeMountParameters ]] | Omit = omit ,
7879 dockerfile : Optional [str ] | Omit = omit ,
7980 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
@@ -107,6 +108,8 @@ def create(
107108 with the given name. Only one of (base_blueprint_id, base_blueprint_name) should
108109 be specified.
109110
111+ build_args: (Optional) Arbitrary Docker build args to pass during build.
112+
110113 code_mounts: A list of code mounts to be included in the Blueprint.
111114
112115 dockerfile: Dockerfile contents to be used to build the Blueprint.
@@ -140,6 +143,7 @@ def create(
140143 "name" : name ,
141144 "base_blueprint_id" : base_blueprint_id ,
142145 "base_blueprint_name" : base_blueprint_name ,
146+ "build_args" : build_args ,
143147 "code_mounts" : code_mounts ,
144148 "dockerfile" : dockerfile ,
145149 "file_mounts" : file_mounts ,
@@ -480,6 +484,7 @@ def preview(
480484 name : str ,
481485 base_blueprint_id : Optional [str ] | Omit = omit ,
482486 base_blueprint_name : Optional [str ] | Omit = omit ,
487+ build_args : Optional [Dict [str , str ]] | Omit = omit ,
483488 code_mounts : Optional [Iterable [CodeMountParameters ]] | Omit = omit ,
484489 dockerfile : Optional [str ] | Omit = omit ,
485490 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
@@ -511,6 +516,8 @@ def preview(
511516 with the given name. Only one of (base_blueprint_id, base_blueprint_name) should
512517 be specified.
513518
519+ build_args: (Optional) Arbitrary Docker build args to pass during build.
520+
514521 code_mounts: A list of code mounts to be included in the Blueprint.
515522
516523 dockerfile: Dockerfile contents to be used to build the Blueprint.
@@ -544,6 +551,7 @@ def preview(
544551 "name" : name ,
545552 "base_blueprint_id" : base_blueprint_id ,
546553 "base_blueprint_name" : base_blueprint_name ,
554+ "build_args" : build_args ,
547555 "code_mounts" : code_mounts ,
548556 "dockerfile" : dockerfile ,
549557 "file_mounts" : file_mounts ,
@@ -591,6 +599,7 @@ async def create(
591599 name : str ,
592600 base_blueprint_id : Optional [str ] | Omit = omit ,
593601 base_blueprint_name : Optional [str ] | Omit = omit ,
602+ build_args : Optional [Dict [str , str ]] | Omit = omit ,
594603 code_mounts : Optional [Iterable [CodeMountParameters ]] | Omit = omit ,
595604 dockerfile : Optional [str ] | Omit = omit ,
596605 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
@@ -624,6 +633,8 @@ async def create(
624633 with the given name. Only one of (base_blueprint_id, base_blueprint_name) should
625634 be specified.
626635
636+ build_args: (Optional) Arbitrary Docker build args to pass during build.
637+
627638 code_mounts: A list of code mounts to be included in the Blueprint.
628639
629640 dockerfile: Dockerfile contents to be used to build the Blueprint.
@@ -657,6 +668,7 @@ async def create(
657668 "name" : name ,
658669 "base_blueprint_id" : base_blueprint_id ,
659670 "base_blueprint_name" : base_blueprint_name ,
671+ "build_args" : build_args ,
660672 "code_mounts" : code_mounts ,
661673 "dockerfile" : dockerfile ,
662674 "file_mounts" : file_mounts ,
@@ -997,6 +1009,7 @@ async def preview(
9971009 name : str ,
9981010 base_blueprint_id : Optional [str ] | Omit = omit ,
9991011 base_blueprint_name : Optional [str ] | Omit = omit ,
1012+ build_args : Optional [Dict [str , str ]] | Omit = omit ,
10001013 code_mounts : Optional [Iterable [CodeMountParameters ]] | Omit = omit ,
10011014 dockerfile : Optional [str ] | Omit = omit ,
10021015 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
@@ -1028,6 +1041,8 @@ async def preview(
10281041 with the given name. Only one of (base_blueprint_id, base_blueprint_name) should
10291042 be specified.
10301043
1044+ build_args: (Optional) Arbitrary Docker build args to pass during build.
1045+
10311046 code_mounts: A list of code mounts to be included in the Blueprint.
10321047
10331048 dockerfile: Dockerfile contents to be used to build the Blueprint.
@@ -1061,6 +1076,7 @@ async def preview(
10611076 "name" : name ,
10621077 "base_blueprint_id" : base_blueprint_id ,
10631078 "base_blueprint_name" : base_blueprint_name ,
1079+ "build_args" : build_args ,
10641080 "code_mounts" : code_mounts ,
10651081 "dockerfile" : dockerfile ,
10661082 "file_mounts" : file_mounts ,
0 commit comments