Type Alias OrchRun

OrchRun: OrchRunBase & {
    actionId: string;
    log?: string;
    resourceId: string;
    taskId: string;
    taskMeta: tasks.TaskMetadata;
    taskName: string;
}

Type Declaration

  • actionId: string

    The unique identifier of the action that was executed.

  • Optionallog?: string

    The raw log output from the task run.

  • resourceId: string

    The unique identifier of the resource the task operated on.

  • taskId: string

    The unique identifier of the task.

  • taskMeta: tasks.TaskMetadata
  • taskName: string

    The name of the task at the time it was run.