A cross tenant metadata driven processing framework for Azure Data Factory and Azure Synapse Analytics achieved by coupling orchestration pipelines with a SQL database and a set of Azure Functions.
« Contents / Functions / Services
DataFactoryManagementClient
Methods:
Returns: Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient
Role: this helper is used by the execute pipeline, check pipeline status and get error details function to authenticate against the target worker data factory at runtime before invoking pipeline operation requests.
Exmaple Use:
using (var client = DataFactoryClient.CreateDataFactoryClient(tenantId, applicationId,
authenticationKey, subscriptionId))
{
PipelineRun pipelineRun;
pipelineRun = client.PipelineRuns.Get(resourceGroup, factoryName, runResponse.RunId);
}