@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**.
22 lines • 800 B
TypeScript
import type { AiCron } from './ai-cron.js';
import type { AiConfigurationId } from './ai-configuration-id.js';
import type { AiExecutionScheduleStatus } from './ai-execution-schedule-status.js';
/**
* Request object for changing the execution schedule
*/
export type AiExecutionScheduleModificationRequest = {
cron?: AiCron;
/**
* Timestamp, defining when the executions should start running periodically, defaults to now
* Format: "date-time".
*/
start?: string;
/**
* Timestamp, defining when the executions should stop running
* Format: "date-time".
*/
end?: string;
configurationId?: AiConfigurationId;
status?: AiExecutionScheduleStatus;
} & Record<string, any>;
//# sourceMappingURL=ai-execution-schedule-modification-request.d.ts.map