Status type

type Status =
  | "NotStarted"
  | "Running"
  | "Succeeded"
  | "Failed"
  | "Cancelled"
  | "Cancelling"
  | "ValidationFailed"