UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 774 B
import { ServiceStatusService } from './ServiceStatusService'; import { ServiceStatusStateEnum } from './ServiceStatusStateEnum'; /** Service states for an Ip */ export interface ServiceStatus { /** Port and state of a service on an IP */ dns: ServiceStatusService; /** Port and state of a service on an IP */ http: ServiceStatusService; /** Port and state of a service on an IP */ https: ServiceStatusService; /** Possible states of a service (ping, port) */ ping: ServiceStatusStateEnum; /** Port and state of a service on an IP */ smtp: ServiceStatusService; /** Port and state of a service on an IP */ ssh: ServiceStatusService; /** */ tools?: ServiceStatusStateEnum; } //# sourceMappingURL=ServiceStatus.d.ts.map