You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
331 B
13 lines
331 B
declare type AnvilStatusHost = { |
|
state: 'offline' | 'booted' | 'crmd' | 'in_ccm' | 'online'; |
|
host_uuid: string; |
|
host_name: string; |
|
state_percent: number; |
|
state_message: string; |
|
removable: boolean; |
|
}; |
|
|
|
declare type AnvilStatus = { |
|
anvil_state: 'optimal' | 'not_ready' | 'degraded'; |
|
hosts: Array<AnvilStatusHost>; |
|
};
|
|
|