From a3d4e7d5754b9ed60d6e34c60224626975ca108e Mon Sep 17 00:00:00 2001 From: Siddarth Chalasani Date: Thu, 20 Nov 2025 17:32:06 -0800 Subject: [PATCH] add build_context, named_build_context to async create_and_await_build_complete --- src/runloop_api_client/resources/blueprints.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/runloop_api_client/resources/blueprints.py b/src/runloop_api_client/resources/blueprints.py index 84e5c7a34..c627a8435 100644 --- a/src/runloop_api_client/resources/blueprints.py +++ b/src/runloop_api_client/resources/blueprints.py @@ -981,11 +981,13 @@ async def create_and_await_build_complete( base_blueprint_id: Optional[str] | Omit = omit, base_blueprint_name: Optional[str] | Omit = omit, build_args: Optional[Dict[str, str]] | Omit = omit, + build_context: Optional[blueprint_create_params.BuildContext] | Omit = omit, code_mounts: Optional[Iterable[CodeMountParameters]] | Omit = omit, dockerfile: Optional[str] | Omit = omit, file_mounts: Optional[Dict[str, str]] | Omit = omit, launch_parameters: Optional[LaunchParameters] | Omit = omit, metadata: Optional[Dict[str, str]] | Omit = omit, + named_build_contexts: Optional[Dict[str, blueprint_create_params.NamedBuildContexts]] | Omit = omit, secrets: Optional[Dict[str, str]] | Omit = omit, services: Optional[Iterable[blueprint_create_params.Service]] | Omit = omit, system_setup_commands: Optional[SequenceNotStr[str]] | Omit = omit, @@ -1019,11 +1021,13 @@ async def create_and_await_build_complete( base_blueprint_id=base_blueprint_id, base_blueprint_name=base_blueprint_name, build_args=build_args, + build_context=build_context, code_mounts=code_mounts, dockerfile=dockerfile, file_mounts=file_mounts, launch_parameters=launch_parameters, metadata=metadata, + named_build_contexts=named_build_contexts, secrets=secrets, services=services, system_setup_commands=system_setup_commands,