src/app/ceph/cluster/configuration/configuration-form/configuration-form.model.ts
Properties |
daemon_default |
Type : any
|
default |
Type : any
|
desc |
Type : string
|
long_desc |
Type : string
|
max |
Type : any
|
min |
Type : any
|
name |
Type : string
|
services |
Type : Array<string>
|
type |
Type : string
|
value |
Type : Array<any>
|
export class ConfigFormModel {
name: string;
desc: string;
long_desc: string;
type: string;
value: Array<any>;
default: any;
daemon_default: any;
min: any;
max: any;
services: Array<string>;
}