@sap-ai-sdk/ai-api
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
50 lines • 1.36 kB
TypeScript
import type { RTAScenarioId } from './rta-scenario-id.js';
import type { RTAExecutableId } from './rta-executable-id.js';
import type { RTAExecutionId } from './rta-execution-id.js';
/**
* Execution
*/
export type RTAExecution = {
scenarioId: RTAScenarioId;
executableId: RTAExecutableId;
id?: RTAExecutionId;
/**
* Status of the execution
* @example "COMPLETED"
*/
status?: 'PENDING' | 'RUNNING' | 'COMPLETED' | 'DEAD' | 'STOPPING' | 'STOPPED' | 'UNKNOWN';
/**
* Execution status message
* Max Length: 256.
*/
statusMessage?: string;
/**
* Timestamp of execution submission
* @example "2017-09-15T12:01:06Z"
* Format: "date-time".
*/
submissionTimestamp?: string | null;
/**
* Timestamp of execution start
* @example "2017-09-15T12:01:06Z"
* Format: "date-time".
*/
startTimestamp?: string | null;
/**
* Timestamp of execution finish
* @example "2017-09-15T12:01:06Z"
* Format: "date-time".
*/
finishTimestamp?: string | null;
/**
* Timestamp of resource creation
* Format: "date-time".
*/
createdAt: string;
/**
* Timestamp of latest resource modification
* Format: "date-time".
*/
modifiedAt: string;
} & Record<string, any>;
//# sourceMappingURL=rta-execution.d.ts.map