Files
gitops/ts_interfaces/data/secret.ts

12 lines
219 B
TypeScript

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