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

    The ID of the task.

  • OptionallastExecutionTime?: string

    The last time the task executed.

  • links: SelfLink
  • Optionallog?: string

    The reason why the task was disabled.

  • Optionalmigrated?: boolean

    A flag indicating whether the task has been migrated to the new scheduling service.

  • OptionalnextExecutionTime?: string

    The next time the task will execute.

  • OptionalspaceId?: string

    The space ID of the application

  • state: "Enabled" | "Disabled" | "Completed"

    Toggle for enabling and disabling the reload task

  • tenantId: string

    The ID of the tenant who owns the task.

  • userId: string

    The ID of the user who owns the task.