Type Alias TaskMetadata

type TaskMetadata = {
    createdAt?: string;
    createdBy?: string;
    deletedAt?: string;
    disabledCode?:
        | "MANUALLY"
        | "CONSECUTIVE-FAILURES"
        | "APP-SCRIPT-UPDATED"
        | "OWNER-DELETED"
        | "OWNER-DISABLED"
        | "APP-MOVED-SPACE";
    migratedFrom?: string;
    orchestration?: tasks.OrchMeta;
    ownerId?: string;
    resourceName?: string;
    resourceSubType?: string;
    resourceType?: string;
    scriptOwnerId?: string;
    spaceId?: string;
    spaceType?: "personal"
    | "shared"
    | "managed";
    tenantId?: string;
    topology?: TaskTopology;
    trigger?: tasks.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
deletedAt?: string
disabledCode?:
    | "MANUALLY"
    | "CONSECUTIVE-FAILURES"
    | "APP-SCRIPT-UPDATED"
    | "OWNER-DELETED"
    | "OWNER-DISABLED"
    | "APP-MOVED-SPACE"
migratedFrom?: string
orchestration?: tasks.OrchMeta
ownerId?: string
resourceName?: string
resourceSubType?: string
resourceType?: string
scriptOwnerId?: string
spaceId?: string
spaceType?: "personal" | "shared" | "managed"
tenantId?: string
topology?: TaskTopology
trigger?: tasks.TriggerMeta
updatedAt?: string
usage?: "ANALYTICS" | "DATA_PREPARATION" | "DATAFLOW_PREP" | "SINGLE_TABLE_PREP"