CreateUSqlJobProperties 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
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
Azure SDK for .NET