Returned when run configuration details are successfully retrieved. Contains the pipeline run configuration definition, associated connection details, and pipeline engine configuration.
Parameters
| Property | Required | Description |
|---|---|---|
pipelineRunConfig |
Yes | Configuration settings that define how the pipeline executes, including source and target assets, engine selection, scheduling information, and execution behavior. |
connection |
Yes | Connection information associated with the run configuration. |
pipelineEngine |
Yes | Pipeline engine details, including execution resources and Spark-related configuration properties. |
JSON Example
{
"pipelineRunConfig": {
"id": "689db618617b4bd63438e56d",
"name": "Test_Run_Config_Name",
"connectionId": "67f39924ba2eee6be1aa968a",
"sourceAssetNamePath": "[Source_Datasource].[dq].[dbo].[test_dataset]",
"sourceAssetTypePath": "[Host].[Database].[Schema].[Table]",
"targetAssetNamePath": null,
"targetAssetTypePath": null,
"overwriteTarget": false,
"dropTarget": false,
"pipelineEngineId": "67f39a36c13a892caca36f80",
"compatibilityStatus": true,
"published": false,
"type": "Batch"
},
"connection": {
"id": "67f39924ba2eee6be1aa968a",
"name": "Source_Datasource_SQLServer_Connection",
"type": "Mssql",
"displayName": "SQLServer_Connection"
},
"pipelineEngine": {
"id": "67f39a36c13a892caca36f80",
"name": "PipelineEngine_Agent",
"properties": {
"sparkDriverMemory": "1g",
"sparkExecutorInstances": "1",
"sparkExecutorMemory": "3g",
"sparkExecutorCores": "3"
}
}
}