UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

35 lines 1.15 kB
/** * 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 { EdgeNativeHostTwoNodeCandidatePriority } from './edgeNativeHostTwoNodeCandidatePriority'; /** * EdgeNativeHost is the underlying appliance */ export type EdgeNativeHost = { /** Is Edge host nominated as candidate */ IsCandidateCaption?: boolean; /** CACert for TLS connections */ caCert?: string; /** HostAddress is a FQDN or IP address of the Host */ hostAddress: string; /** Qualified name of host */ hostName?: string; /** HostUid is the ID of the EdgeHost */ 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?: EdgeNativeHostTwoNodeCandidatePriority; }; //# sourceMappingURL=edgeNativeHost.d.ts.map