UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

28 lines 705 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 { PackType } from './packType'; /** * Pack object */ export type PackEntity = { /** Pack layer */ layer?: string; /** Pack name */ name: string; /** Pack tag */ tag?: string; type?: PackType; /** Pack uid */ uid: string; /** values represents the values.yaml used as input parameters either Params OR Values should be used, not both If both applied at the same time, will only use Values */ values?: string; }; //# sourceMappingURL=packEntity.d.ts.map