UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 439 B
import { Ipv4Block } from '../Ipv4Block'; import { AllowedNetworkStateEnum } from './AllowedNetworkStateEnum'; /** Network allowed on infrastructure firewall */ export interface AllowedNetwork { /** */ description?: string; /** Network name, e.g. 123.100.200.0/32 */ network: Ipv4Block; /** */ networkAccessId: number; /** */ state: AllowedNetworkStateEnum; } //# sourceMappingURL=AllowedNetwork.d.ts.map