]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-list/rbd-model.ts
import 15.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-list / rbd-model.ts
1 export class RbdModel {
2 id: string;
3 unique_id: string;
4 name: string;
5 pool_name: string;
6 namespace: string;
7 image_format: RBDImageFormat;
8
9 cdExecuting: string;
10 }
11
12 export enum RBDImageFormat {
13 V1 = 1,
14 V2 = 2
15 }