UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

26 lines 932 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.10.0 🍺 * Do not edit manually. * Palette APIs - 4.7 * 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; /** Set the edgehost candidate priority as primary or secondary, if the edgehost is nominated as two node candidate */ twoNodeCandidatePriority?: EdgeNativeMachinePoolHostEntityTwoNodeCandidatePriority; }; //# sourceMappingURL=edgeNativeMachinePoolHostEntity.d.ts.map