UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

21 lines (18 loc) 428 B
import { IOrchestratedItem } from './IOrchestratedItem'; import { ITaskStep } from './ITaskStep'; export interface ITask extends IOrchestratedItem { application: string; id: string; name?: string; steps?: ITaskStep[]; variables: ITaskVariable[]; endTime: number; startTime: number; execution: any; history: any; poller?: PromiseLike<void>; } export interface ITaskVariable { key: string; value: any; }