UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

28 lines 1.08 kB
/** * 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 { Nic } from './nic'; import type { EdgeNativeHybridMachinePoolHostTwoNodeCandidatePriority } from './edgeNativeHybridMachinePoolHostTwoNodeCandidatePriority'; /** * v1EdgeNativeHybridMachinePoolHostEntity defines Edge Native machine pool's host configuration */ export type EdgeNativeHybridMachinePoolHost = { /** Edge host name */ hostName?: string; /** Edge host id */ hostUid: string; nic?: Nic; /** Sets the Edge Host candidate priority as either primary or secondary. This field is applicable only when the Edge Host is nominated as a two-node candidate. To enable priority assignment, ensure that 'isTwoNodeCluster' is set to true. */ twoNodeCandidatePriority?: EdgeNativeHybridMachinePoolHostTwoNodeCandidatePriority; /** Vpn server IP */ vpnServerIp?: string; }; //# sourceMappingURL=edgeNativeHybridMachinePoolHost.d.ts.map