src/app/shared/models/erasure-code-profile.ts
Properties |
|
Optional c |
Type : number
|
Optional crush-device-class |
Type : string
|
Optional crush-failure-domain |
Type : string
|
Optional crush-locality |
Type : string
|
Optional crush-root |
Type : string
|
Optional directory |
Type : string
|
Optional k |
Type : number
|
Optional l |
Type : number
|
Optional m |
Type : number
|
name |
Type : string
|
Optional packetsize |
Type : number
|
plugin |
Type : string
|
Optional technique |
Type : string
|
export class ErasureCodeProfile {
name: string;
plugin: string;
k?: number;
m?: number;
c?: number;
l?: number;
packetsize?: number;
technique?: string;
'crush-root'?: string;
'crush-locality'?: string;
'crush-failure-domain'?: string;
'crush-device-class'?: string;
'directory'?: string;
}