import { Component } from './status/Component';
import { Service } from './status/Service';
/** The global status of a Load Balancer */
export interface Status {
    /** The Load Balancer farms status informations */
    farms: Component;
    /** The Load Balancer frontends status informations */
    frontends: Component;
    /** The Load Balancer servers status informations */
    servers: Component;
    /** The Load Balancer service status informations */
    service: Service;
}
//# sourceMappingURL=Status.d.ts.map