다음을 통해 공유


ScopeJobProperties Constructors

Definition

Overloads

ScopeJobProperties()

Initializes a new instance of the ScopeJobProperties class.

ScopeJobProperties(String, String, IList<ScopeJobResource>, String, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>, String, String)

Initializes a new instance of the ScopeJobProperties class.

ScopeJobProperties()

Initializes a new instance of the ScopeJobProperties class.

public ScopeJobProperties ();
Public Sub New ()

Applies to

ScopeJobProperties(String, String, IList<ScopeJobResource>, String, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>, String, String)

Initializes a new instance of the ScopeJobProperties class.

public ScopeJobProperties (string script, string runtimeVersion = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.ScopeJobResource> resources = default, string userAlgebraPath = default, string notifier = default, TimeSpan? totalCompilationTime = default, TimeSpan? totalQueuedTime = default, TimeSpan? totalRunningTime = default, TimeSpan? totalPausedTime = default, string rootProcessNodeId = default, string yarnApplicationId = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.ScopeJobProperties : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.ScopeJobResource> * string * string * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> * string * string -> Microsoft.Azure.Management.DataLake.Analytics.Models.ScopeJobProperties
Public Sub New (script As String, Optional runtimeVersion As String = Nothing, Optional resources As IList(Of ScopeJobResource) = Nothing, Optional userAlgebraPath As String = Nothing, Optional notifier As String = Nothing, Optional totalCompilationTime As Nullable(Of TimeSpan) = Nothing, Optional totalQueuedTime As Nullable(Of TimeSpan) = Nothing, Optional totalRunningTime As Nullable(Of TimeSpan) = Nothing, Optional totalPausedTime As Nullable(Of TimeSpan) = Nothing, Optional rootProcessNodeId As String = Nothing, Optional yarnApplicationId As String = Nothing)

Parameters

script
String

The script to run. Please note that the maximum script size is 3 MB.

runtimeVersion
String

The runtime version of the Data Lake Analytics engine to use for the specific type of job being run.

resources
IList<ScopeJobResource>

The list of resources that are required by the job.

userAlgebraPath
String

The algebra file path after the job has completed.

notifier
String

The list of email addresses, separated by semi-colons, to notify when the job reaches a terminal state.

totalCompilationTime
Nullable<TimeSpan>

The total time this job spent compiling. This value should not be set by the user and will be ignored if it is.

totalQueuedTime
Nullable<TimeSpan>

The total time this job spent queued. This value should not be set by the user and will be ignored if it is.

totalRunningTime
Nullable<TimeSpan>

The total time this job spent executing. This value should not be set by the user and will be ignored if it is.

totalPausedTime
Nullable<TimeSpan>

The total time this job spent paused. This value should not be set by the user and will be ignored if it is.

rootProcessNodeId
String

The ID used to identify the job manager coordinating job execution. This value should not be set by the user and will be ignored if it is.

yarnApplicationId
String

The ID used to identify the yarn application executing the job. This value should not be set by the user and will be ignored if it is.

Applies to