create_blank_pipeline
Initialize an empty data pipeline in Microsoft Fabric to prepare for adding activities like data copying and transformation workflows.
Instructions
Create a blank Fabric pipeline with no activities.
Creates a Data Pipeline in the specified workspace with an empty activities array, ready to be populated with activities later using the add_copy_activity_to_pipeline tool.
Parameters: workspace_name: The display name of the workspace where the pipeline will be created. pipeline_name: Name for the new pipeline (must be unique in workspace). description: Optional description for the pipeline.
Returns: Dictionary with status, pipeline_id, pipeline_name, workspace_name, and message.
Example: ```python # Create a blank pipeline result = create_blank_pipeline( workspace_name="Analytics Workspace", pipeline_name="My_Data_Integration_Pipeline", description="Pipeline for data integration workflows" )
# Later, add activities to it
add_copy_activity_to_pipeline(
workspace_name="Analytics Workspace",
pipeline_name="My_Data_Integration_Pipeline",
source_type="AzurePostgreSqlSource",
source_connection_id=conn_id,
source_table_schema="public",
source_table_name="customers",
destination_lakehouse_id=lakehouse_id,
destination_connection_id=lakehouse_conn_id,
destination_table_name="customers"
)
```Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| workspace_name | Yes | ||
| pipeline_name | Yes | ||
| description | No |