PipelineComponent Class 
Pipeline component, currently used to store components in an azure.ai.ml.dsl.pipeline.
Constructor
PipelineComponent(*, name: str | None = None, version: str | None = None, description: str | None = None, tags: Dict | None = None, display_name: str | None = None, inputs: Dict | None = None, outputs: Dict | None = None, jobs: Dict[str, BaseNode] | None = None, is_deterministic: bool | None = None, **kwargs: Any)
		Parameters
| Name | Description | 
|---|---|
| 
		 name 
			
				Required
			 
	 | 
	
		
		 Name of the component.  | 
| 
		 version 
			
				Required
			 
	 | 
	
		
		 Version of the component.  | 
| 
		 description 
			
				Required
			 
	 | 
	
		
		 Description of the component.  | 
| 
		 tags 
			
				Required
			 
	 | 
	
		
		 Tag dictionary. Tags can be added, removed, and updated.  | 
| 
		 display_name 
			
				Required
			 
	 | 
	
		
		 Display name of the component.  | 
| 
		 inputs 
			
				Required
			 
	 | 
	
		
		 Component inputs.  | 
| 
		 outputs 
			
				Required
			 
	 | 
	
		
		 Component outputs.  | 
| 
		 jobs 
			
				Required
			 
	 | 
	
		
		 Id to components dict inside the pipeline definition.  | 
| 
		 is_deterministic 
			
				Required
			 
	 | 
	
		
		 Whether the pipeline component is deterministic.  | 
Keyword-Only Parameters
| Name | Description | 
|---|---|
| 
		 name 
	 | 
	
		 Default value: None 
			 | 
| 
		 version 
	 | 
	
		 Default value: None 
			 | 
| 
		 description 
	 | 
	
		 Default value: None 
			 | 
| 
		 tags 
	 | 
	
		 Default value: None 
			 | 
| 
		 display_name 
	 | 
	
		 Default value: None 
			 | 
| 
		 inputs 
	 | 
	
		 Default value: None 
			 | 
| 
		 outputs 
	 | 
	
		 Default value: None 
			 | 
| 
		 jobs 
	 | 
	
		 Default value: None 
			 | 
| 
		 is_deterministic 
	 | 
	
		 Default value: None 
			 | 
Methods
| dump | 
					 Dump the component content into a file in yaml format.  | 
			
dump
Dump the component content into a file in yaml format.
dump(dest: str | PathLike | IO, **kwargs: Any) -> None
		Parameters
| Name | Description | 
|---|---|
| 
		 dest 
			
				Required
			 
	 | 
	
		
		 The destination to receive this component's content. Must be either a path to a local file, or an already-open file stream. If dest is a file path, a new file will be created, and an exception is raised if the file exists. If dest is an open file, the file will be written to directly, and an exception will be raised if the file is not writable.  | 
Attributes
base_path
creation_context
The creation context of the resource.
Returns
| Type | Description | 
|---|---|
| 
					 The creation metadata for the resource.  | 
		
display_name
id
inputs
is_deterministic
Whether the component is deterministic.
Returns
| Type | Description | 
|---|---|
| 
					 Whether the component is deterministic  |