palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
34 lines • 1.31 kB
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 { ClusterCondition } from './clusterCondition';
import type { VsphereImage } from './vsphereImage';
import type { VsphereCloudConfigStatusRoleDigest } from './vsphereCloudConfigStatusRoleDigest';
/**
* VsphereCloudConfigStatus defines the observed state of VsphereCloudConfig
*/
export type VsphereCloudConfigStatus = {
ansibleDigest?: string;
conditions?: ClusterCondition[];
/** addon layers present in spc */
isAddonLayer?: boolean;
lastOVACreated?: string;
lastVMExported?: string;
nodeImage?: VsphereImage;
/** this map will be for ansible roles present in eack pack */
roleDigest?: VsphereCloudConfigStatusRoleDigest;
/** sourceImageId, it can be from packref's annotations or from pack.json */
sourceImageId?: string;
/** UploadOVAS3 will hold last image name which uploaded to S3 */
uploadOvaS3?: string;
/** If no ansible roles found in Packs then Mold should tell Drive to use capi image and not create custom image, because there is nothing to add */
useCapiImage?: boolean;
};
//# sourceMappingURL=vsphereCloudConfigStatus.d.ts.map