add_dataflow_activity_to_pipeline
Add a Dataflow Activity to an existing Microsoft Fabric pipeline to extend data processing capabilities and build complex workflows incrementally.
Instructions
Add a Dataflow Activity to an existing Fabric pipeline.
Retrieves an existing pipeline, adds a Dataflow Activity to it, and updates the pipeline definition. The Dataflow Activity will be appended to any existing activities in the pipeline.
Use this tool when:
You have an existing pipeline and want to add a new Dataflow Activity
You're building complex pipelines with multiple activities
You want to incrementally build a pipeline
Parameters: workspace_name: The display name of the workspace containing the pipeline. pipeline_name: Name of the existing pipeline to update. dataflow_name: Name of the Dataflow to run. dataflow_workspace_name: Optional name of the workspace containing the Dataflow. activity_name: Optional custom name for the activity (default: auto-generated). depends_on_activity_name: Optional name of an existing activity this one depends on. timeout: Activity timeout (default: "0.12:00:00"). retry: Number of retry attempts (default: 0). retry_interval_seconds: Retry interval in seconds (default: 30).
Returns: Dictionary with status, pipeline_id, pipeline_name, activity_name, workspace_name, and message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| workspace_name | Yes | ||
| pipeline_name | Yes | ||
| dataflow_name | Yes | ||
| dataflow_workspace_name | No | ||
| activity_name | No | ||
| depends_on_activity_name | No | ||
| timeout | No | 0.12:00:00 | |
| retry | No | ||
| retry_interval_seconds | No |