parent
78f4ccba9f
commit
75d28f441c
3 changed files with 16 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||||||
|
declare type AnvilSharedStorage = { |
||||||
|
file_systems: Array<AnvilSharedStorageFileSystem>; |
||||||
|
}; |
@ -0,0 +1,4 @@ |
|||||||
|
declare type AnvilSharedStorageFileSystem = { |
||||||
|
mountPoint: string; |
||||||
|
nodes: Array<AnvilSharedStorageNode>; |
||||||
|
}; |
@ -0,0 +1,9 @@ |
|||||||
|
declare type AnvilSharedStorageNode = { |
||||||
|
is_mounted: boolean; |
||||||
|
total: number; |
||||||
|
free: number; |
||||||
|
nodeInfo?: { |
||||||
|
node_name: string; |
||||||
|
node_uuid: string; |
||||||
|
}; |
||||||
|
}; |
Loading…
Reference in new issue