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