palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
25 lines • 1.11 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 { ClusterProfileTemplate } from './clusterProfileTemplate';
import type { ClusterGroupClusterRef } from './clusterGroupClusterRef';
import type { ClusterGroupClustersConfig } from './clusterGroupClustersConfig';
import type { ClusterGroupSpecType } from './clusterGroupSpecType';
/**
* Cluster group specifications
*/
export type ClusterGroupSpec = {
/** ClusterProfileTemplate is a copy of the draft version or latest published version of the clusterprofileSpec. It consists of list of add on profiles at a cluster group level which will be enforced on all virtual cluster. ClusterProfileTemplate will be updated from the clusterprofile pointed by ClusterProfileRef */
clusterProfileTemplates?: ClusterProfileTemplate[];
clusterRefs?: ClusterGroupClusterRef[];
clustersConfig?: ClusterGroupClustersConfig;
type?: ClusterGroupSpecType;
};
//# sourceMappingURL=clusterGroupSpec.d.ts.map