import { Ip } from '../Ip';
import { NsxtEdgeSizeEnum } from './nsxt/NsxtEdgeSizeEnum';
import { StateEnum } from './StateEnum';
/** NSX-T Edge */
export interface NsxtEdge {
    /** Location of NSX-T Edge disks */
    diskLocation?: string;
    /** Host id where NSX-T Edge is located */
    hostId?: number;
    /** IP of the NSX-T Edge */
    ip: Ip;
    /** The VMware MoRef of the NSX-T Edge */
    moRef?: string;
    /** Name of the NSX-T Edge */
    name: string;
    /** Id of the NSX-T Edge */
    nsxtEdgeId: number;
    /** Size of the NSX-T Edge */
    size: NsxtEdgeSizeEnum;
    /** State of the NSX-T Edge */
    state: StateEnum;
}
//# sourceMappingURL=NsxtEdge.d.ts.map