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

export class RbdFormEditRequestModel {
  name: string;
  size: number;
  features: Array<string> = [];
  configuration: RbdConfigurationEntry[];

  enable_mirror?: boolean;
  mirror_mode?: string;
  primary?: boolean;
  schedule_interval: string;
  remove_scheduling? = false;
}