11 lines
198 B
TypeScript
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;
|
|
}
|