/** A structure describing the current state of an IPLB instances */
export interface InstancesState {
    /** Internal ID of this IPLB instance */
    internalId: number;
    /** Last update date */
    lastUpdateDate: string;
    /** Current state of this IPLB instance */
    state: string;
    /** zone of this IPLB instance */
    zone: string;
}
//# sourceMappingURL=InstancesState.d.ts.map