interfaces/ts/data/deployment.ts

10 lines
263 B
TypeScript
Raw Normal View History

2024-02-07 11:29:23 +00:00
import * as plugins from '../plugins.js';
export interface IDeployment {
2024-05-27 12:34:01 +00:00
id: string;
deploymentDirectiveId: string;
2024-02-07 11:29:23 +00:00
affectedServiceIds: string[];
usedImageId: string;
deploymentLog: string[];
status: 'scheduled' | 'running' | 'deployed' | 'failed';
}