UNPKG

@gridscale/api

Version:
26 lines (23 loc) 769 B
/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import { FirewallRules } from './FirewallRules'; export type LinkedNetworkUpdate = { /** * The ordering of the network interfaces. Lower numbers have lower PCI-IDs. */ ordering?: number; /** * Whether the server boots from this network or not. */ bootdevice?: boolean; /** * Defines information about IP prefix spoof protection (it allows source traffic only from the IPv4/IPv4 network prefixes). If empty, it allow no IPv4/IPv6 source traffic. If set to null, l3security is disabled (default). */ l3security?: Array<string>; firewall?: FirewallRules; /** * The UUID of the Firewall. */ firewall_template_uuid?: string; }