@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
16 lines (14 loc) • 299 B
text/typescript
export interface IHealth {
description: string;
healthCheckUrl?: string;
loadBalancers: ILoadBalancerHealth[];
state: string;
statusPageUrl?: string;
type: string;
}
export interface ILoadBalancerHealth {
name: string;
state: string;
description: string;
healthState: string;
}