]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/orchestrator.interface.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / models / orchestrator.interface.ts
1 export interface OrchestratorStatus {
2 available: boolean;
3 message: string;
4 features: {
5 [feature: string]: {
6 available: boolean;
7 };
8 };
9 }