import { DatacenterEnum } from './DatacenterEnum';
import { NetworkInfo } from './NetworkInfo';
import { Options } from './Options';
/** Housing bay */
export interface Housing {
    /** Housing bay datacenter */
    datacenter?: DatacenterEnum;
    /** The name you give to the bay */
    name: string;
    /** Housing bay network */
    network: NetworkInfo[];
    /** Housing bay options */
    options: Options;
    /** The bay's description */
    rack: string;
    /** Bay Security code */
    securityCode: string;
}
//# sourceMappingURL=Housing.d.ts.map