Type Alias AutomationDetailResponseObject

type AutomationDetailResponseObject = {
    connectorIds?: string[];
    createdAt?: string;
    description?: string;
    endpointIds?: string[];
    executionToken?: string;
    id?: string;
    lastRun?: RunDetailResponseObject;
    lastRunAt?: string;
    lastRunStatus?:
        | "failed"
        | "finished"
        | "finished with warnings"
        | "must stop"
        | "not started"
        | "paused"
        | "running"
        | "starting"
        | "stopped"
        | "exceeded limit";
    maxConcurrentRuns?: number;
    name?: string;
    ownerId?: string;
    runMode?: "manual"
    | "scheduled"
    | "triggered"
    | "webhook";
    schedules?: ScheduleResponseObject[];
    snippetIds?: string[];
    spaceId?: string;
    state?: "available" | "unavailable" | "disabled";
    updatedAt?: string;
    workspace?: unknown;
}
Index
connectorIds?: string[]

A list of connectors that were detected in the workspace. This includes connectors present in blocks that are not connected to other blocks. Order of GUIDs is not guaranteed.

createdAt?: string
description?: string

The description of the automation.

endpointIds?: string[]

A list of endpoints that were detected in the workspace. This includes endpoints present in blocks that are not connected to other blocks. Order of GUIDs is not guaranteed.

executionToken?: string

Execution token required to authorize the execution of the automation.

id?: string
lastRunAt?: string

The date and time when the last automation run was finished.

lastRunStatus?:
    | "failed"
    | "finished"
    | "finished with warnings"
    | "must stop"
    | "not started"
    | "paused"
    | "running"
    | "starting"
    | "stopped"
    | "exceeded limit"

The status of the last run of the automation.

maxConcurrentRuns?: number

Maximum number of concurrent runs allowed for this automation.

name?: string

The name of the automation.

ownerId?: string

The unique identifier of the owner of the automation.

runMode?: "manual" | "scheduled" | "triggered" | "webhook"

Defines how the automation run is started.

snippetIds?: string[]

A list of snippets that were detected in the workspace. This includes snippet blocks that are not connected to other blocks. Order of GUIDs is not guaranteed.

spaceId?: string

The unique identifier of the space that contains the automation.

state?: "available" | "unavailable" | "disabled"

The state of the automation.

updatedAt?: string
workspace?: unknown

The workspace generated by the Qlik Automate editor.