]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/erasure-code-profile.ts
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / models / erasure-code-profile.ts
1 export class ErasureCodeProfile {
2 name: string;
3 plugin: string;
4 k?: number;
5 m?: number;
6 c?: number;
7 l?: number;
8 packetsize?: number;
9 technique?: string;
10 'crush-root'?: string;
11 'crush-locality'?: string;
12 'crush-failure-domain'?: string;
13 'crush-device-class'?: string;
14 'directory'?: string;
15 }