Share via


CreateUSqlJobProperties Constructors

Definition

Overloads

CreateUSqlJobProperties()

Initializes a new instance of the CreateUSqlJobProperties class.

CreateUSqlJobProperties(String, String, Nullable<CompileMode>)

Initializes a new instance of the CreateUSqlJobProperties class.

CreateUSqlJobProperties()

Initializes a new instance of the CreateUSqlJobProperties class.

public CreateUSqlJobProperties ();
Public Sub New ()

Applies to

CreateUSqlJobProperties(String, String, Nullable<CompileMode>)

Initializes a new instance of the CreateUSqlJobProperties class.

public CreateUSqlJobProperties (string script, string runtimeVersion = default, Microsoft.Azure.Management.DataLake.Analytics.Models.CompileMode? compileMode = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.CreateUSqlJobProperties : string * string * Nullable<Microsoft.Azure.Management.DataLake.Analytics.Models.CompileMode> -> Microsoft.Azure.Management.DataLake.Analytics.Models.CreateUSqlJobProperties
Public Sub New (script As String, Optional runtimeVersion As String = Nothing, Optional compileMode As Nullable(Of CompileMode) = 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.

compileMode
Nullable<CompileMode>

The specific compilation mode for the job used during execution. If this is not specified during submission, the server will determine the optimal compilation mode. Possible values include: 'Semantic', 'Full', 'SingleBox'

Applies to