Package version:

Interface HDInsightMapReduceActivity

HDInsight MapReduce activity type.

interface HDInsightMapReduceActivity {
    arguments?: any[];
    className: any;
    defines?: {
        [propertyName: string]: any;
    };
    dependsOn?: ActivityDependency[];
    description?: string;
    getDebugInfo?: string;
    jarFilePath: any;
    jarLibs?: any[];
    jarLinkedService?: LinkedServiceReference;
    linkedServiceName?: LinkedServiceReference;
    name: string;
    onInactiveMarkAs?: string;
    policy?: ActivityPolicy;
    state?: string;
    storageLinkedServices?: LinkedServiceReference[];
    type: "HDInsightMapReduce";
    userProperties?: UserProperty[];
}

Hierarchy (view full)

Properties

arguments?: any[]

User specified arguments to HDInsightActivity.

className: any

Class name. Type: string (or Expression with resultType string).

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

Allows user to specify defines for the MapReduce job request.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

getDebugInfo?: string

Debug info option.

jarFilePath: any

Jar path. Type: string (or Expression with resultType string).

jarLibs?: any[]

Jar libs.

jarLinkedService?: LinkedServiceReference

Jar linked service reference.

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.

Activity policy.

state?: string

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

storageLinkedServices?: LinkedServiceReference[]

Storage linked service references.

type

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

userProperties?: UserProperty[]

Activity user properties.