@gridscale/api
Version:
gridscale API Wrapper
19 lines (17 loc) • 603 B
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type LinkedStorageUpdate = {
/**
* 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>;
}