summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/models/summary.model.ts
blob: f2854a0ebcffe18ebca75fe96290f5cbe37ca52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { ExecutingTask } from './executing-task';
import { FinishedTask } from './finished-task';

export class Summary {
  executing_tasks?: ExecutingTask[];
  filesystems?: any[];
  finished_tasks?: FinishedTask[];
  have_mon_connection?: boolean;
  health_status?: string;
  mgr_host?: string;
  mgr_id?: string;
  rbd_mirroring?: any;
  rbd_pools?: any[];
  version?: string;
}