@@ -52,6 +52,7 @@ def compile(
5252 pipeline_func : base_component .BaseComponent ,
5353 package_path : str ,
5454 pipeline_name : Optional [str ] = None ,
55+ pipeline_display_name : Optional [str ] = None ,
5556 pipeline_parameters : Optional [Dict [str , Any ]] = None ,
5657 type_check : bool = True ,
5758 kubernetes_manifest_options : Optional [
@@ -64,6 +65,7 @@ def compile(
6465 pipeline_func: Pipeline function constructed with the ``@dsl.pipeline`` or component constructed with the ``@dsl.component`` decorator.
6566 package_path: Output YAML file path. For example, ``'~/my_pipeline.yaml'`` or ``'~/my_component.yaml'``.
6667 pipeline_name: Name of the pipeline.
68+ pipeline_display_name: Display name of the pipeline
6769 pipeline_parameters: Map of parameter names to argument values.
6870 type_check: Whether to enable type checking of component interfaces during compilation.
6971 kubernetes_manifest_options: KubernetesManifestOptions object for Kubernetes manifest output during pipeline compilation.
@@ -82,7 +84,7 @@ def compile(
8284 pipeline_spec = pipeline_func .pipeline_spec ,
8385 pipeline_name = pipeline_name ,
8486 pipeline_parameters = pipeline_parameters ,
85- )
87+ pipeline_display_name = pipeline_display_name )
8688
8789 builder .write_pipeline_spec_to_file (
8890 pipeline_spec = pipeline_spec ,
0 commit comments