summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-feature.interface.ts
blob: c12975f05f1fa144b03be03613dffeac0a2bd16e (plain)
1
2
3
4
5
6
7
8
9
export interface RbdImageFeature {
  desc: string;
  allowEnable: boolean;
  allowDisable: boolean;
  requires?: string;
  interlockedWith?: string;
  key?: string;
  initDisabled?: boolean;
}