]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form.model.ts
785fec2cc2fe9ec7b48214a5480085fe54c148ff
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-form / rbd-form.model.ts
1 import { RbdConfigurationEntry } from '~/app/shared/models/configuration';
2
3 export class RbdFormModel {
4 name: string;
5 pool_name: string;
6 namespace: string;
7 data_pool: string;
8 size: number;
9
10 /* Striping */
11 obj_size: number;
12 stripe_unit: number;
13 stripe_count: number;
14
15 /* Configuration */
16 configuration: RbdConfigurationEntry[];
17 }