From 2d7e1e443034061dad328cc9fd2fed322d18719d Mon Sep 17 00:00:00 2001 From: Jeremy Shih Date: Mon, 14 Oct 2024 14:47:04 +0800 Subject: [PATCH] fix(vdp): rename create pipeline input parameters --- instill/clients/pipeline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instill/clients/pipeline.py b/instill/clients/pipeline.py index 4fbb244..625ba53 100644 --- a/instill/clients/pipeline.py +++ b/instill/clients/pipeline.py @@ -235,14 +235,14 @@ def list_pipelines( def create_pipeline( self, namespace_id: str, - name: str, + pipeline_id: str, description: str, recipe: dict, raw_recipe: str = "", async_enabled: bool = False, ) -> pipeline_interface.CreateNamespacePipelineResponse: pipeline = pipeline_interface.Pipeline( - id=name, + id=pipeline_id, description=description, raw_recipe=raw_recipe, )