parent
ee063c9f43
commit
89313de042
4 changed files with 53 additions and 78 deletions
@ -1,16 +1,10 @@ |
||||
declare type AnvilSharedStorageHost = { |
||||
host_uuid: string; |
||||
host_name: string; |
||||
is_mounted: boolean; |
||||
total: number; |
||||
free: number; |
||||
}; |
||||
|
||||
declare type AnvilSharedStorageFileSystem = { |
||||
mount_point: string; |
||||
hosts: Array<AnvilSharedStorageHost>; |
||||
declare type AnvilSharedStorageGroup = { |
||||
storage_group_name: string; |
||||
storage_group_uuid: string; |
||||
storage_group_total: number; |
||||
storage_group_free: number; |
||||
}; |
||||
|
||||
declare type AnvilSharedStorage = { |
||||
file_systems: Array<AnvilSharedStorageFileSystem>; |
||||
storage_groups: Array<AnvilSharedStorageGroup>; |
||||
}; |
||||
|
Loading…
Reference in new issue