src/app/ceph/block/rbd-form/rbd-form-clone-request.model.ts
Properties |
| child_image_name |
Type : string
|
| child_pool_name |
Type : string
|
| Optional configuration |
Type : RbdConfigurationEntry[]
|
| data_pool |
Type : string
|
| features |
Type : Array<string>
|
Default value : []
|
| obj_size |
Type : number
|
| stripe_count |
Type : number
|
| stripe_unit |
Type : number
|
import { RbdConfigurationEntry } from '../../../shared/models/configuration';
export class RbdFormCloneRequestModel {
child_pool_name: string;
child_image_name: string;
obj_size: number;
features: Array<string> = [];
stripe_unit: number;
stripe_count: number;
data_pool: string;
configuration?: RbdConfigurationEntry[];
}