palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
33 lines • 973 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 { PackManifestImportEntity } from './packManifestImportEntity';
import type { PackRegistryImportEntity } from './packRegistryImportEntity';
/**
* Pack import request payload
*/
export type PackImportEntity = {
/** Pack layer [ "os", "k8s", "cni", "csi", "addon" ] */
layer?: string;
/** Pack manifests array */
manifests?: PackManifestImportEntity[];
/** Pack name */
name?: string;
registry?: PackRegistryImportEntity;
/** Pack version tag */
tag?: string;
/** Pack type [ "spectro", "helm", "manifest", "oci" ] */
type?: string;
/** Pack values are the customizable configurations for the pack */
values?: string;
/** Pack version */
version?: string;
};
//# sourceMappingURL=packImportEntity.d.ts.map