UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

18 lines 756 B
/** A structure describing the BMC supported features */ export interface BmcSupportedFeatures { /** Access to the KVM through a Java web launch application */ javaKvm: boolean; /** Access to the virtual serial port of your server through a SSH client */ sshSol: boolean; /** Test that the access to the BMC is operational */ testPassword: boolean; /** Test that the BMC is reachable */ testPing: boolean; /** Test that the Web interface of the BMC is operational */ testWeb: boolean; /** Access to the KVM through a Web interface */ webKvm: boolean; /** Access to the virtual serial port of your server through a Web interface */ webSol: boolean; } //# sourceMappingURL=BmcSupportedFeatures.d.ts.map