palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
36 lines • 1.28 kB
TypeScript
/**
* 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 { 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;
/** 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?: EdgeNativeHostTwoNodeCandidatePriority;
};
//# sourceMappingURL=edgeNativeHost.d.ts.map