src/app/ceph/block/rbd-form/rbd-form.model.ts
Properties |
configuration |
Type : RbdConfigurationEntry[]
|
data_pool |
Type : string
|
name |
Type : string
|
obj_size |
Type : number
|
pool_name |
Type : string
|
size |
Type : number
|
stripe_count |
Type : number
|
stripe_unit |
Type : number
|
import { RbdConfigurationEntry } from '../../../shared/models/configuration';
export class RbdFormModel {
name: string;
pool_name: string;
data_pool: string;
size: number;
/* Striping */
obj_size: number;
stripe_unit: number;
stripe_count: number;
/* Configuration */
configuration: RbdConfigurationEntry[];
}