UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

27 lines 803 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * OpenAPI spec version: v1 */ import type { Nameserver } from './nameserver'; import type { Pool } from './pool'; /** * IPPool defines static IPs available. Gateway, Prefix, Nameserver, if defined, will be default values for all Pools */ export type IPPool = { /** Gateway is the gateway ip address */ gateway?: string; nameserver?: Nameserver; /** Pools contains the list of IP addresses pools */ pools?: Pool[]; /** Prefix is the mask of the network as integer (max 128) */ prefix?: number; /** UID is the UID of this IPPool, used by Hubble */ uid?: string; }; //# sourceMappingURL=iPPool.d.ts.map