]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form-copy-request.model.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-form / rbd-form-copy-request.model.ts
CommitLineData
f67539c2 1import { RbdConfigurationEntry } from '~/app/shared/models/configuration';
11fdf7f2
TL
2
3export class RbdFormCopyRequestModel {
4 dest_pool_name: string;
9f95a23c 5 dest_namespace: string;
11fdf7f2
TL
6 dest_image_name: string;
7 snapshot_name: string;
8 obj_size: number;
9 features: Array<string> = [];
10 stripe_unit: number;
11 stripe_count: number;
12 data_pool: string;
13 configuration: RbdConfigurationEntry[];
14}