portainer/app/kubernetes/models/namespace/models.js

19 lines
338 B
JavaScript

/**
* KubernetesNamespace Model
*/
const _KubernetesNamespace = Object.freeze({
Id: '',
Name: '',
CreationDate: '',
Status: '',
Yaml: '',
ResourcePoolName: '',
ResourcePoolOwner: '',
});
export class KubernetesNamespace {
constructor() {
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesNamespace)));
}
}