summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form-clone-request.model.ts
blob: fa190c0d5cba3c7e0cc3dfcf6f1edc6ff84b6b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { RbdConfigurationEntry } from '~/app/shared/models/configuration';

export class RbdFormCloneRequestModel {
  child_pool_name: string;
  child_namespace: string;
  child_image_name: string;
  obj_size: number;
  features: Array<string> = [];
  stripe_unit: number;
  stripe_count: number;
  data_pool: string;
  configuration?: RbdConfigurationEntry[];
}