interface TaskOrchestrationJob {
    demands?: Demand[];
    executeAs?: IdentityRef;
    executionMode?: string;
    executionTimeout?: any;
    instanceId?: string;
    itemType?: TaskOrchestrationItemType;
    name?: string;
    refName?: string;
    tasks?: TaskInstance[];
    variables?: { [key: string]: string };
}

Hierarchy (View Summary)

Properties

demands?: Demand[]
executeAs?: IdentityRef
executionMode?: string
executionTimeout?: any
instanceId?: string
name?: string
refName?: string
tasks?: TaskInstance[]
variables?: { [key: string]: string }