]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form-clone-request.model.ts
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-form / rbd-form-clone-request.model.ts
1 import { RbdConfigurationEntry } from '../../../shared/models/configuration';
2
3 export class RbdFormCloneRequestModel {
4 child_pool_name: string;
5 child_namespace: string;
6 child_image_name: string;
7 obj_size: number;
8 features: Array<string> = [];
9 stripe_unit: number;
10 stripe_count: number;
11 data_pool: string;
12 configuration?: RbdConfigurationEntry[];
13 }