src/app/ceph/block/rbd-snapshot-list/rbd-snapshot.model.ts
Properties |
cdExecuting |
Type : string
|
id |
Type : number
|
is_protected |
Type : boolean
|
name |
Type : string
|
size |
Type : number
|
timestamp |
Type : string
|
export class RbdSnapshotModel {
id: number;
name: string;
size: number;
timestamp: string;
is_protected: boolean;
cdExecuting: string;
}