Package version:

Interface HDInsightHiveActivity

HDInsight Hive activity type.

interface HDInsightHiveActivity {
    arguments?: any[];
    defines?: {
        [propertyName: string]: any;
    };
    dependsOn?: ActivityDependency[];
    description?: string;
    getDebugInfo?: string;
    linkedServiceName?: LinkedServiceReference;
    name: string;
    onInactiveMarkAs?: string;
    policy?: ActivityPolicy;
    queryTimeout?: number;
    scriptLinkedService?: LinkedServiceReference;
    scriptPath?: any;
    state?: string;
    storageLinkedServices?: LinkedServiceReference[];
    type: "HDInsightHive";
    userProperties?: UserProperty[];
    variables?: {
        [propertyName: string]: any;
    };
}

Hierarchy (view full)

Properties

arguments?: any[]

User specified arguments to HDInsightActivity.

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

Allows user to specify defines for Hive job request.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

getDebugInfo?: string

Debug info option.

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.

queryTimeout?: number

Query timeout value (in minutes). Effective when the HDInsight cluster is with ESP (Enterprise Security Package)

scriptLinkedService?: LinkedServiceReference

Script linked service reference.

scriptPath?: any

Script path. 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.

storageLinkedServices?: LinkedServiceReference[]

Storage linked service references.

type

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

userProperties?: UserProperty[]

Activity user properties.

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

User specified arguments under hivevar namespace.