palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
24 lines • 944 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
*/
/**
* Represents a docker image with an embedded disk.
*/
export type VmContainerDiskSource = {
/** Image is the name of the image with the embedded disk. */
image: string;
/** Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images */
imagePullPolicy?: string;
/** ImagePullSecret is the name of the Docker registry secret required to pull the image. The secret must already exist. */
imagePullSecret?: string;
/** Path defines the path to disk file in the container */
path?: string;
};
//# sourceMappingURL=vmContainerDiskSource.d.ts.map