UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

26 lines 945 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 */ /** * DataVolumeSourceRegistry provides the parameters to create a Data Volume from an registry source */ export type VmDataVolumeSourceRegistry = { /** CertConfigMap provides a reference to the Registry certs */ certConfigMap?: string; /** ImageStream is the name of image stream for import */ imageStream?: string; /** PullMethod can be either "pod" (default import), or "node" (node docker cache based import) */ pullMethod?: string; /** SecretRef provides the secret reference needed to access the Registry source */ secretRef?: string; /** URL is the url of the registry source (starting with the scheme: docker, oci-archive) */ url?: string; }; //# sourceMappingURL=vmDataVolumeSourceRegistry.d.ts.map