Type Alias TaskMetadata

type TaskMetadata = {
    createdAt?: string;
    createdBy?: string;
    deletedAt?: string;
    disabledCode?:
        | "MANUALLY"
        | "CONSECUTIVE-FAILURES"
        | "APP-SCRIPT-UPDATED"
        | "OWNER-DELETED"
        | "OWNER-DISABLED";
    migratedFrom?: string;
    orchestration?: OrchMeta;
    ownerId?: string;
    spaceId?: string;
    tenantId?: string;
    trigger?: TriggerMeta;
    updatedAt?: string;
    usage?: | "ANALYTICS"
    | "DATA_PREPARATION"
    | "DATAFLOW_PREP"
    | "SINGLE_TABLE_PREP";
}
Index

Properties

createdAt?: string

The UTC timestamp when the task was created

createdBy?: string

The user ID of the user that created the task

deletedAt?: string

The UTC timestamp when the task was deleted

disabledCode?:
    | "MANUALLY"
    | "CONSECUTIVE-FAILURES"
    | "APP-SCRIPT-UPDATED"
    | "OWNER-DELETED"
    | "OWNER-DISABLED"

why the Task is disabled

migratedFrom?: string

The ID of the reload-task this one was migrated from (if applicable)

orchestration?: OrchMeta
ownerId?: string

The user ID of the owner of the task

spaceId?: string

The space ID that the Task will operate in

tenantId?: string

The tenant ID that the Task will operate in

trigger?: TriggerMeta
updatedAt?: string

The UTC timestamp when the task was last updated

usage?: "ANALYTICS" | "DATA_PREPARATION" | "DATAFLOW_PREP" | "SINGLE_TABLE_PREP"

resource usage. Normally it means in which product domain the resource is used. if this field is not presented, it has default of ANALYTICS