UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

10 lines 325 B
import { Ip } from '../Ip'; import { AllowedIPsActionEnum } from './AllowedIPsActionEnum'; /** Smpp allowed IPs */ export interface AllowedIPs { /** Action to perform on the provided IPs */ action: AllowedIPsActionEnum; /** List of IPs to add or remove */ ips: Ip[]; } //# sourceMappingURL=AllowedIPs.d.ts.map