Files
gitops/ts_interfaces/data/secret.ts
2026-02-24 12:29:58 +00:00

11 lines
198 B
TypeScript

export interface ISecret {
key: string;
value: string;
protected: boolean;
masked: boolean;
scope: 'project' | 'group';
scopeId: string;
connectionId: string;
environment: string;
}