]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/api/rbd.model.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / api / rbd.model.ts
CommitLineData
11fdf7f2
TL
1import { RbdConfigurationEntry } from '../models/configuration';
2
3export interface RbdPool {
4 pool_name: string;
5 status: number;
6 value: RbdImage[];
2a845540 7 headers: any;
11fdf7f2
TL
8}
9
10export interface RbdImage {
11 disk_usage: number;
12 stripe_unit: number;
13 name: string;
14 parent: any;
15 pool_name: string;
16 num_objs: number;
17 block_name_prefix: string;
18 snapshots: any[];
19 obj_size: number;
20 data_pool: string;
21 total_disk_usage: number;
22 features: number;
23 configuration: RbdConfigurationEntry[];
24 timestamp: string;
25 id: string;
26 features_name: string[];
27 stripe_count: number;
28 order: number;
29 size: number;
30}