]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/erasure-code-profile.ts
import 15.2.9
[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 d?: number;
9 packetsize?: number;
10 technique?: string;
11 scalar_mds?: 'jerasure' | 'isa' | 'shec';
12 'crush-root'?: string;
13 'crush-locality'?: string;
14 'crush-failure-domain'?: string;
15 'crush-device-class'?: string;
16 'directory'?: string;
17 }