2021-05-31 22:47:00 +00:00
|
|
|
declare type AnvilFileSystemHost = {
|
2021-05-28 21:42:51 +00:00
|
|
|
host_uuid: string;
|
|
|
|
host_name: string;
|
|
|
|
is_mounted: boolean;
|
|
|
|
total: number;
|
|
|
|
free: number;
|
|
|
|
};
|
|
|
|
|
2021-05-31 22:47:00 +00:00
|
|
|
declare type AnvilFileSystem = {
|
2021-05-28 21:42:51 +00:00
|
|
|
mount_point: string;
|
2021-05-31 22:47:00 +00:00
|
|
|
hosts: Array<AnvilFileSystemHost>;
|
2021-05-28 21:42:51 +00:00
|
|
|
};
|
|
|
|
|
2021-05-31 22:47:00 +00:00
|
|
|
declare type AnvilFileSystems = {
|
|
|
|
file_systems: Array<AnvilFileSystem>;
|
2021-05-28 21:42:51 +00:00
|
|
|
};
|