interfaces/ts/data/deployment.ts
2024-05-27 14:34:01 +02:00

10 lines
263 B
TypeScript

import * as plugins from '../plugins.js';
export interface IDeployment {
id: string;
deploymentDirectiveId: string;
affectedServiceIds: string[];
usedImageId: string;
deploymentLog: string[];
status: 'scheduled' | 'running' | 'deployed' | 'failed';
}