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";
    name?: string;
    ownerId?: string;
    runMode?: "manual"
    | "scheduled"
    | "triggered"
    | "webhook";
    schedules?: ScheduleResponseObject[];
    snippetIds?: string[];
    spaceId?: string;
    state?: "available" | "unavailable" | "disabled";
    updatedAt?: string;
    workspace?: unknown;
}
Index

Properties

connectorIds?: string[]

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

createdAt?: string
description?: string
endpointIds?: string[]

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

executionToken?: string
id?: string
lastRunAt?: string
lastRunStatus?:
    | "failed"
    | "finished"
    | "finished with warnings"
    | "must stop"
    | "not started"
    | "paused"
    | "running"
    | "starting"
    | "stopped"
name?: string
ownerId?: string
runMode?: "manual" | "scheduled" | "triggered" | "webhook"
snippetIds?: string[]

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

spaceId?: string
state?: "available" | "unavailable" | "disabled"
updatedAt?: string
workspace?: unknown

The workspace generated by the Qlik Automate editor.