UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

29 lines 770 B
/** * 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 { PackRef } from './packRef'; /** * Cluster profile template meta information */ export type ClusterProfileTemplateMeta = { cloudType?: string; /** Cluster profile name */ name?: string; /** Cluster profile packs array */ packs?: PackRef[]; /** scope or context(system, tenant or project) */ scope?: string; /** Cluster profile type [ "cluster", "infra", "add-on", "system" ] */ type?: string; /** Cluster profile uid */ uid?: string; version?: number; }; //# sourceMappingURL=clusterProfileTemplateMeta.d.ts.map