palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
27 lines • 898 B
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 { ManifestRefUpdateEntity } from './manifestRefUpdateEntity';
import type { PackType } from './packType';
/**
* Pack values entity to refer the existing pack for the values override
*/
export type PackValuesEntity = {
/** Pack manifests are additional content as part of the profile */
manifests?: ManifestRefUpdateEntity[];
/** Pack name */
name: string;
/** Pack version tag */
tag?: string;
type?: PackType;
/** Pack 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=packValuesEntity.d.ts.map