src/app/ceph/block/rbd-form/rbd-form-copy-request.model.ts
Properties |
configuration |
Type : RbdConfigurationEntry[]
|
data_pool |
Type : string
|
dest_image_name |
Type : string
|
dest_pool_name |
Type : string
|
features |
Type : Array<string>
|
Default value : []
|
obj_size |
Type : number
|
snapshot_name |
Type : string
|
stripe_count |
Type : number
|
stripe_unit |
Type : number
|
import { RbdConfigurationEntry } from '../../../shared/models/configuration';
export class RbdFormCopyRequestModel {
dest_pool_name: string;
dest_image_name: string;
snapshot_name: string;
obj_size: number;
features: Array<string> = [];
stripe_unit: number;
stripe_count: number;
data_pool: string;
configuration: RbdConfigurationEntry[];
}