mirror of https://github.com/portainer/portainer
22 lines
410 B
JavaScript
22 lines
410 B
JavaScript
/**
|
|
* KubernetesApplicationSecret Model
|
|
*/
|
|
const _KubernetesApplicationSecret = Object.freeze({
|
|
Id: 0,
|
|
Name: '',
|
|
Namespace: '',
|
|
Type: '',
|
|
CreationDate: '',
|
|
ConfigurationOwner: '',
|
|
Yaml: '',
|
|
Data: [],
|
|
SecretType: '',
|
|
Annotations: [],
|
|
});
|
|
|
|
export class KubernetesApplicationSecret {
|
|
constructor() {
|
|
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesApplicationSecret)));
|
|
}
|
|
}
|