UNPKG

@gridscale/api

Version:
21 lines (20 loc) 707 B
import { FirewallRules } from './FirewallRules'; export declare 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; };