UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

25 lines 833 B
import { ExternalInformation } from './gateway/ExternalInformation'; import { Interface } from './gateway/Interface'; import { GatewayModelEnum } from './GatewayModelEnum'; import { GatewayStatusEnum } from './GatewayStatusEnum'; import { TypeEnum } from '../project/gateway/TypeEnum'; /** Gateway */ export interface Gateway { /** External information */ externalInformation?: ExternalInformation; /** ID of the gateway */ id: string; /** Interfaces list of the gateway */ interfaces: Interface[]; /** Model of the gateway */ model: GatewayModelEnum; /** Name of the gateway */ name: string; /** Gateway region */ region: string; /** Status of the gateway */ status: GatewayStatusEnum; /** Type fo the gateway */ type: TypeEnum; } //# sourceMappingURL=Gateway.d.ts.map