UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 443 B
import { Ip } from '../Ip'; import { ServerStateEnum } from './ServerStateEnum'; /** Server attached to an SSL Gateway */ export interface Server { /** IP address of the server attached to your SSL Gateway */ address: Ip; /** Id of your server */ id: number; /** Port of your server attached to your SSL Gateway */ port: number; /** Server state */ state: ServerStateEnum; } //# sourceMappingURL=Server.d.ts.map