palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
31 lines • 979 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 { ArchType } from './archType';
import type { ClusterMetaSpecLocation } from './clusterMetaSpecLocation';
/**
* Spectro cluster meta summary
*/
export type SpectroClusterMetaSpec = {
/** Architecture type of the cluster */
archType?: ArchType[];
/** Unique identifier for the cloud account used by this cluster */
cloudAccountUid?: string;
/** Geographic region where the cluster is deployed */
cloudRegion?: string;
/** Infrastructure provider type for the cluster */
cloudType?: string;
/** Type classification of the cluster */
clusterType?: string;
location?: ClusterMetaSpecLocation;
/** User-defined labels associated with this cluster */
tags?: string[];
};
//# sourceMappingURL=spectroClusterMetaSpec.d.ts.map