CreateScopeJobParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateScopeJobParameters() |
Initializes a new instance of the CreateScopeJobParameters class. |
CreateScopeJobParameters(JobType, CreateJobProperties, String, Nullable<Int32>, Nullable<Double>, Nullable<Int32>, IList<String>, JobRelationshipProperties, IDictionary<String,String>) |
Initializes a new instance of the CreateScopeJobParameters class. |
CreateScopeJobParameters()
Initializes a new instance of the CreateScopeJobParameters class.
public CreateScopeJobParameters ();
Public Sub New ()
Applies to
CreateScopeJobParameters(JobType, CreateJobProperties, String, Nullable<Int32>, Nullable<Double>, Nullable<Int32>, IList<String>, JobRelationshipProperties, IDictionary<String,String>)
Initializes a new instance of the CreateScopeJobParameters class.
public CreateScopeJobParameters (Microsoft.Azure.Management.DataLake.Analytics.Models.JobType type, Microsoft.Azure.Management.DataLake.Analytics.Models.CreateJobProperties properties, string name, int? degreeOfParallelism = default, double? degreeOfParallelismPercent = default, int? priority = default, System.Collections.Generic.IList<string> logFilePatterns = default, Microsoft.Azure.Management.DataLake.Analytics.Models.JobRelationshipProperties related = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.CreateScopeJobParameters : Microsoft.Azure.Management.DataLake.Analytics.Models.JobType * Microsoft.Azure.Management.DataLake.Analytics.Models.CreateJobProperties * string * Nullable<int> * Nullable<double> * Nullable<int> * System.Collections.Generic.IList<string> * Microsoft.Azure.Management.DataLake.Analytics.Models.JobRelationshipProperties * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.DataLake.Analytics.Models.CreateScopeJobParameters
Public Sub New (type As JobType, properties As CreateJobProperties, name As String, Optional degreeOfParallelism As Nullable(Of Integer) = Nothing, Optional degreeOfParallelismPercent As Nullable(Of Double) = Nothing, Optional priority As Nullable(Of Integer) = Nothing, Optional logFilePatterns As IList(Of String) = Nothing, Optional related As JobRelationshipProperties = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)
Parameters
- type
- JobType
The job type of the current job (Hive, USql, or Scope (for internal use only)). Possible values include: 'USql', 'Hive', 'Scope'
- properties
- CreateJobProperties
The job specific properties.
- name
- String
The friendly name of the job to submit.
The degree of parallelism to use for this job. At most one of degreeOfParallelism and degreeOfParallelismPercent should be specified. If none, a default value of 1 will be used for degreeOfParallelism.
the degree of parallelism in percentage used for this job. At most one of degreeOfParallelism and degreeOfParallelismPercent should be specified. If none, a default value of 1 will be used for degreeOfParallelism.
The priority value to use for the current job. Lower numbers have a higher priority. By default, a job has a priority of 1000. This must be greater than 0.
The list of log file name patterns to find in the logFolder. '' is the only matching character allowed. Example format: jobExecution.log or mylog.txt
- related
- JobRelationshipProperties
The recurring job relationship information properties.
- tags
- IDictionary<String,String>
The key-value pairs used to add additional metadata to the job information.
Applies to
Azure SDK for .NET