PipelinesOperationsExtensions.CreateRun Method

Definition

Creates a run of a pipeline.

public static Microsoft.Azure.Management.DataFactory.Models.CreateRunResponse CreateRun (this Microsoft.Azure.Management.DataFactory.IPipelinesOperations operations, string resourceGroupName, string factoryName, string pipelineName, string referencePipelineRunId = default, bool? isRecovery = default, string startActivityName = default, bool? startFromFailure = default, System.Collections.Generic.IDictionary<string,object> parameters = default);
static member CreateRun : Microsoft.Azure.Management.DataFactory.IPipelinesOperations * string * string * string * string * Nullable<bool> * string * Nullable<bool> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Azure.Management.DataFactory.Models.CreateRunResponse
<Extension()>
Public Function CreateRun (operations As IPipelinesOperations, resourceGroupName As String, factoryName As String, pipelineName As String, Optional referencePipelineRunId As String = Nothing, Optional isRecovery As Nullable(Of Boolean) = Nothing, Optional startActivityName As String = Nothing, Optional startFromFailure As Nullable(Of Boolean) = Nothing, Optional parameters As IDictionary(Of String, Object) = Nothing) As CreateRunResponse

Parameters

operations
IPipelinesOperations

The operations group for this extension method.

resourceGroupName
String

The resource group name.

factoryName
String

The factory name.

pipelineName
String

The pipeline name.

referencePipelineRunId
String

The pipeline run identifier. If run ID is specified the parameters of the specified run will be used to create a new run.

isRecovery
Nullable<Boolean>

Recovery mode flag. If recovery mode is set to true, the specified referenced pipeline run and the new run will be grouped under the same groupId.

startActivityName
String

In recovery mode, the rerun will start from this activity. If not specified, all activities will run.

startFromFailure
Nullable<Boolean>

In recovery mode, if set to true, the rerun will start from failed activities. The property will be used only if startActivityName is not specified.

parameters
IDictionary<String,Object>

Parameters of the pipeline run. These parameters will be used only if the runId is not specified.

Returns

Applies to