2019-09-12 12:45:36 +00:00
|
|
|
import * as interfaces from './';
|
|
|
|
|
|
|
|
export interface ISecretCreationDescriptor {
|
|
|
|
name: string;
|
2019-09-13 12:40:38 +00:00
|
|
|
version: string;
|
2019-09-12 12:45:36 +00:00
|
|
|
contentArg: any;
|
|
|
|
labels: interfaces.TLabels;
|
2019-09-13 16:20:12 +00:00
|
|
|
}
|