]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-form/rbd-form-edit-request.model.ts
import ceph quincy 17.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-form / rbd-form-edit-request.model.ts
CommitLineData
f67539c2 1import { RbdConfigurationEntry } from '~/app/shared/models/configuration';
11fdf7f2
TL
2
3export class RbdFormEditRequestModel {
4 name: string;
5 size: number;
6 features: Array<string> = [];
7 configuration: RbdConfigurationEntry[];
2a845540
TL
8
9 enable_mirror?: boolean;
10 mirror_mode?: string;
11 primary?: boolean;
12 schedule_interval: string;
13 remove_scheduling? = false;
11fdf7f2 14}