Type Alias Task

Task: TaskBase & {
    disabledCode?:
        | "MANUALLY"
        | "CONSECUTIVE-FAILURES"
        | "OWNER-DELETED"
        | "OWNER-DISABLED";
    fortressId?: string;
    id: string;
    lastExecutionTime?: string;
    links: SelfLink;
    log?: string;
    migrated?: boolean;
    nextExecutionTime?: string;
    spaceId?: string;
    state: "Enabled"
    | "Disabled"
    | "Completed";
    tenantId: string;
    userId: string;
}

Type Declaration

  • OptionaldisabledCode?: "MANUALLY" | "CONSECUTIVE-FAILURES" | "OWNER-DELETED" | "OWNER-DISABLED"

    The reason why the task was disabled.

  • OptionalfortressId?: string

    The fortress ID of the application

  • id: string
  • OptionallastExecutionTime?: string
  • links: SelfLink
  • Optionallog?: string

    The reason why the task was disabled.

  • Optionalmigrated?: boolean
  • OptionalnextExecutionTime?: string
  • OptionalspaceId?: string
  • state: "Enabled" | "Disabled" | "Completed"
  • tenantId: string
  • userId: string