]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form.model.ts
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-form / rbd-form.model.ts
CommitLineData
11fdf7f2
TL
1import { RbdConfigurationEntry } from '../../../shared/models/configuration';
2
3export class RbdFormModel {
4 name: string;
5 pool_name: string;
9f95a23c 6 namespace: string;
11fdf7f2
TL
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}