mirror of https://github.com/portainer/portainer
15 lines
304 B
JavaScript
15 lines
304 B
JavaScript
/**
|
|
* KubernetesComponentStatus Model
|
|
*/
|
|
const _KubernetesComponentStatus = Object.freeze({
|
|
ComponentName: '',
|
|
Healthy: false,
|
|
ErrorMessage: '',
|
|
});
|
|
|
|
export class KubernetesComponentStatus {
|
|
constructor() {
|
|
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesComponentStatus)));
|
|
}
|
|
}
|