UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

27 lines 1.1 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 { VsphereClusterConfigEntity } from './vsphereClusterConfigEntity'; import type { ClusterConfigEntity } from './clusterConfigEntity'; import type { VsphereMachinePoolConfigEntity } from './vsphereMachinePoolConfigEntity'; import type { SpectroClusterPolicies } from './spectroClusterPolicies'; import type { SpectroClusterProfileEntity } from './spectroClusterProfileEntity'; export type SpectroVsphereClusterEntitySpec = { /** Cloud account uid to be used for cluster provisioning */ cloudAccountUid?: string; cloudConfig: VsphereClusterConfigEntity; clusterConfig?: ClusterConfigEntity; /** Appliance (Edge Host) uid for Edge env */ edgeHostUid?: string; machinepoolconfig?: VsphereMachinePoolConfigEntity[]; policies?: SpectroClusterPolicies; profiles?: SpectroClusterProfileEntity[]; }; //# sourceMappingURL=spectroVsphereClusterEntitySpec.d.ts.map