Package version:

Interface DataLakeAnalyticsUsqlActivity

Data Lake Analytics U-SQL activity.

interface DataLakeAnalyticsUsqlActivity {
    compilationMode?: any;
    degreeOfParallelism?: any;
    dependsOn?: ActivityDependency[];
    description?: string;
    linkedServiceName?: LinkedServiceReference;
    name: string;
    onInactiveMarkAs?: string;
    parameters?: {
        [propertyName: string]: any;
    };
    policy?: ActivityPolicy;
    priority?: any;
    runtimeVersion?: any;
    scriptLinkedService: LinkedServiceReference;
    scriptPath: any;
    state?: string;
    type: "DataLakeAnalyticsU-SQL";
    userProperties?: UserProperty[];
}

Hierarchy (view full)

Properties

compilationMode?: any

Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).

degreeOfParallelism?: any

The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

linkedServiceName?: LinkedServiceReference

Linked service reference.

name: string

Activity name.

onInactiveMarkAs?: string

Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.

parameters?: {
    [propertyName: string]: any;
}

Parameters for U-SQL job request.

Activity policy.

priority?: any

Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.

runtimeVersion?: any

Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).

scriptLinkedService: LinkedServiceReference

Script linked service reference.

scriptPath: any

Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).

state?: string

Activity state. This is an optional property and if not provided, the state will be Active by default.

type

Polymorphic discriminator, which specifies the different types this object can be

userProperties?: UserProperty[]

Activity user properties.