summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/models/orchestrator.interface.ts
blob: 4eceba8c0cac94cf610dba76cfd5d363eae1b0d9 (plain)
1
2
3
4
5
6
7
8
9
export interface OrchestratorStatus {
  available: boolean;
  message: string;
  features: {
    [feature: string]: {
      available: boolean;
    };
  };
}