Package version:

Interface DatabricksSparkJarActivity

DatabricksSparkJar activity.

interface DatabricksSparkJarActivity {
    dependsOn?: ActivityDependency[];
    description?: string;
    libraries?: {
        [propertyName: string]: any;
    }[];
    linkedServiceName?: LinkedServiceReference;
    mainClassName: any;
    name: string;
    onInactiveMarkAs?: string;
    parameters?: any[];
    policy?: ActivityPolicy;
    state?: string;
    type: "DatabricksSparkJar";
    userProperties?: UserProperty[];
}

Hierarchy (view full)

Properties

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

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

A list of libraries to be installed on the cluster that will execute the job.

linkedServiceName?: LinkedServiceReference

Linked service reference.

mainClassName: any

The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).

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?: any[]

Parameters that will be passed to the main method.

Activity policy.

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.