]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/cephfs-subvolume-group.model.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / models / cephfs-subvolume-group.model.ts
1 export interface CephfsSubvolumeGroup {
2 name: string;
3 info: CephfsSubvolumeGroupInfo;
4 }
5
6 export interface CephfsSubvolumeGroupInfo {
7 mode: number;
8 bytes_pcent: number;
9 bytes_quota: number;
10 data_pool: string;
11 state: string;
12 created_at: string;
13 }