PipelineResource Constructors

Definition

Overloads

PipelineResource()

Initializes a new instance of the PipelineResource class.

PipelineResource(String, String, String, String, IDictionary<String, Object>, String, IList<Activity>, IDictionary<String,ParameterSpecification>, IDictionary<String,VariableSpecification>, Nullable<Int32>, IList<Object>, IDictionary<String,Object>, PipelineFolder, PipelinePolicy)

Initializes a new instance of the PipelineResource class.

PipelineResource()

Initializes a new instance of the PipelineResource class.

public PipelineResource ();
Public Sub New ()

Applies to

PipelineResource(String, String, String, String, IDictionary<String, Object>, String, IList<Activity>, IDictionary<String,ParameterSpecification>, IDictionary<String,VariableSpecification>, Nullable<Int32>, IList<Object>, IDictionary<String,Object>, PipelineFolder, PipelinePolicy)

Initializes a new instance of the PipelineResource class.

public PipelineResource (string id = default, string name = default, string type = default, string etag = default, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> activities = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> parameters = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.VariableSpecification> variables = default, int? concurrency = default, System.Collections.Generic.IList<object> annotations = default, System.Collections.Generic.IDictionary<string,object> runDimensions = default, Microsoft.Azure.Management.DataFactory.Models.PipelineFolder folder = default, Microsoft.Azure.Management.DataFactory.Models.PipelinePolicy policy = default);
new Microsoft.Azure.Management.DataFactory.Models.PipelineResource : string * string * string * string * System.Collections.Generic.IDictionary<string, obj> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.VariableSpecification> * Nullable<int> * System.Collections.Generic.IList<obj> * System.Collections.Generic.IDictionary<string, obj> * Microsoft.Azure.Management.DataFactory.Models.PipelineFolder * Microsoft.Azure.Management.DataFactory.Models.PipelinePolicy -> Microsoft.Azure.Management.DataFactory.Models.PipelineResource
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional etag As String = Nothing, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional activities As IList(Of Activity) = Nothing, Optional parameters As IDictionary(Of String, ParameterSpecification) = Nothing, Optional variables As IDictionary(Of String, VariableSpecification) = Nothing, Optional concurrency As Nullable(Of Integer) = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional runDimensions As IDictionary(Of String, Object) = Nothing, Optional folder As PipelineFolder = Nothing, Optional policy As PipelinePolicy = Nothing)

Parameters

id
String

The resource identifier.

name
String

The resource name.

type
String

The resource type.

etag
String

Etag identifies change in the resource.

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

description
String

The description of the pipeline.

activities
IList<Activity>

List of activities in pipeline.

parameters
IDictionary<String,ParameterSpecification>

List of parameters for pipeline.

variables
IDictionary<String,VariableSpecification>

List of variables for pipeline.

concurrency
Nullable<Int32>

The max number of concurrent runs for the pipeline.

annotations
IList<Object>

List of tags that can be used for describing the Pipeline.

runDimensions
IDictionary<String,Object>

Dimensions emitted by Pipeline.

folder
PipelineFolder

The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.

Applies to