]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-feature.interface.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-form / rbd-feature.interface.ts
1 export interface RbdImageFeature {
2 desc: string;
3 allowEnable: boolean;
4 allowDisable: boolean;
5 requires?: string;
6 interlockedWith?: string;
7 key?: string;
8 initDisabled?: boolean;
9 helperHtml?: string;
10 }