Share via


JobRelationshipProperties Constructors

Definition

Overloads

JobRelationshipProperties()

Initializes a new instance of the JobRelationshipProperties class.

JobRelationshipProperties(Guid, Nullable<Guid>, String, String, Nullable<Guid>, String)

Initializes a new instance of the JobRelationshipProperties class.

JobRelationshipProperties()

Initializes a new instance of the JobRelationshipProperties class.

public JobRelationshipProperties ();
Public Sub New ()

Applies to

JobRelationshipProperties(Guid, Nullable<Guid>, String, String, Nullable<Guid>, String)

Initializes a new instance of the JobRelationshipProperties class.

public JobRelationshipProperties (Guid recurrenceId, Guid? pipelineId = default, string pipelineName = default, string pipelineUri = default, Guid? runId = default, string recurrenceName = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.JobRelationshipProperties : Guid * Nullable<Guid> * string * string * Nullable<Guid> * string -> Microsoft.Azure.Management.DataLake.Analytics.Models.JobRelationshipProperties
Public Sub New (recurrenceId As Guid, Optional pipelineId As Nullable(Of Guid) = Nothing, Optional pipelineName As String = Nothing, Optional pipelineUri As String = Nothing, Optional runId As Nullable(Of Guid) = Nothing, Optional recurrenceName As String = Nothing)

Parameters

recurrenceId
Guid

The recurrence identifier (a GUID), unique per activity/script, regardless of iterations. This is something to link different occurrences of the same job together.

pipelineId
Nullable<Guid>

The job relationship pipeline identifier (a GUID).

pipelineName
String

The friendly name of the job relationship pipeline, which does not need to be unique.

pipelineUri
String

The pipeline uri, unique, links to the originating service for this pipeline.

runId
Nullable<Guid>

The run identifier (a GUID), unique identifier of the iteration of this pipeline.

recurrenceName
String

The recurrence name, user friendly name for the correlation between jobs.

Applies to