UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

27 lines 1.06 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 { EdgeNativeMachinePoolHostEntityTwoNodeCandidatePriority } from './edgeNativeMachinePoolHostEntityTwoNodeCandidatePriority'; export type EdgeNativeMachinePoolHostEntity = { /** Edge host name */ hostName?: string; /** Edge host id */ hostUid: string; nic?: Nic; /** Deprecated - Edge host nic name */ nicName?: string; /** Deprecated - Edge host static IP */ staticIP?: string; /** 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?: EdgeNativeMachinePoolHostEntityTwoNodeCandidatePriority; }; //# sourceMappingURL=edgeNativeMachinePoolHostEntity.d.ts.map