@@ -130,6 +130,7 @@ def create(
130130 base_blueprint_id : Optional [str ] | Omit = omit ,
131131 base_blueprint_name : Optional [str ] | Omit = omit ,
132132 build_args : Optional [Dict [str , str ]] | Omit = omit ,
133+ build_context : Optional [blueprint_create_params .BuildContext ] | Omit = omit ,
133134 code_mounts : Optional [Iterable [CodeMountParameters ]] | Omit = omit ,
134135 dockerfile : Optional [str ] | Omit = omit ,
135136 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
@@ -166,6 +167,8 @@ def create(
166167
167168 build_args: (Optional) Arbitrary Docker build args to pass during build.
168169
170+ build_context: A build context backed by an Object.
171+
169172 code_mounts: A list of code mounts to be included in the Blueprint.
170173
171174 dockerfile: Dockerfile contents to be used to build the Blueprint.
@@ -209,6 +212,7 @@ def create(
209212 "base_blueprint_id" : base_blueprint_id ,
210213 "base_blueprint_name" : base_blueprint_name ,
211214 "build_args" : build_args ,
215+ "build_context" : build_context ,
212216 "code_mounts" : code_mounts ,
213217 "dockerfile" : dockerfile ,
214218 "file_mounts" : file_mounts ,
@@ -641,6 +645,7 @@ def preview(
641645 base_blueprint_id : Optional [str ] | Omit = omit ,
642646 base_blueprint_name : Optional [str ] | Omit = omit ,
643647 build_args : Optional [Dict [str , str ]] | Omit = omit ,
648+ build_context : Optional [blueprint_preview_params .BuildContext ] | Omit = omit ,
644649 code_mounts : Optional [Iterable [CodeMountParameters ]] | Omit = omit ,
645650 dockerfile : Optional [str ] | Omit = omit ,
646651 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
@@ -675,6 +680,8 @@ def preview(
675680
676681 build_args: (Optional) Arbitrary Docker build args to pass during build.
677682
683+ build_context: A build context backed by an Object.
684+
678685 code_mounts: A list of code mounts to be included in the Blueprint.
679686
680687 dockerfile: Dockerfile contents to be used to build the Blueprint.
@@ -714,6 +721,7 @@ def preview(
714721 "base_blueprint_id" : base_blueprint_id ,
715722 "base_blueprint_name" : base_blueprint_name ,
716723 "build_args" : build_args ,
724+ "build_context" : build_context ,
717725 "code_mounts" : code_mounts ,
718726 "dockerfile" : dockerfile ,
719727 "file_mounts" : file_mounts ,
@@ -763,6 +771,7 @@ async def create(
763771 base_blueprint_id : Optional [str ] | Omit = omit ,
764772 base_blueprint_name : Optional [str ] | Omit = omit ,
765773 build_args : Optional [Dict [str , str ]] | Omit = omit ,
774+ build_context : Optional [blueprint_create_params .BuildContext ] | Omit = omit ,
766775 code_mounts : Optional [Iterable [CodeMountParameters ]] | Omit = omit ,
767776 dockerfile : Optional [str ] | Omit = omit ,
768777 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
@@ -799,6 +808,8 @@ async def create(
799808
800809 build_args: (Optional) Arbitrary Docker build args to pass during build.
801810
811+ build_context: A build context backed by an Object.
812+
802813 code_mounts: A list of code mounts to be included in the Blueprint.
803814
804815 dockerfile: Dockerfile contents to be used to build the Blueprint.
@@ -842,6 +853,7 @@ async def create(
842853 "base_blueprint_id" : base_blueprint_id ,
843854 "base_blueprint_name" : base_blueprint_name ,
844855 "build_args" : build_args ,
856+ "build_context" : build_context ,
845857 "code_mounts" : code_mounts ,
846858 "dockerfile" : dockerfile ,
847859 "file_mounts" : file_mounts ,
@@ -1274,6 +1286,7 @@ async def preview(
12741286 base_blueprint_id : Optional [str ] | Omit = omit ,
12751287 base_blueprint_name : Optional [str ] | Omit = omit ,
12761288 build_args : Optional [Dict [str , str ]] | Omit = omit ,
1289+ build_context : Optional [blueprint_preview_params .BuildContext ] | Omit = omit ,
12771290 code_mounts : Optional [Iterable [CodeMountParameters ]] | Omit = omit ,
12781291 dockerfile : Optional [str ] | Omit = omit ,
12791292 file_mounts : Optional [Dict [str , str ]] | Omit = omit ,
@@ -1308,6 +1321,8 @@ async def preview(
13081321
13091322 build_args: (Optional) Arbitrary Docker build args to pass during build.
13101323
1324+ build_context: A build context backed by an Object.
1325+
13111326 code_mounts: A list of code mounts to be included in the Blueprint.
13121327
13131328 dockerfile: Dockerfile contents to be used to build the Blueprint.
@@ -1347,6 +1362,7 @@ async def preview(
13471362 "base_blueprint_id" : base_blueprint_id ,
13481363 "base_blueprint_name" : base_blueprint_name ,
13491364 "build_args" : build_args ,
1365+ "build_context" : build_context ,
13501366 "code_mounts" : code_mounts ,
13511367 "dockerfile" : dockerfile ,
13521368 "file_mounts" : file_mounts ,
0 commit comments