UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

26 lines 922 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 */ import type { ClusterTemplateVariableAssignStrategy } from './clusterTemplateVariableAssignStrategy'; import type { ClusterVariableValue } from './clusterVariableValue'; /** * Cluster template variable */ export type ClusterTemplateVariable = { /** Assignment strategy for the variable */ assignStrategy?: ClusterTemplateVariableAssignStrategy; /** List of clusters with the specific variable */ clusters?: ClusterVariableValue[]; /** Name of the variable */ name?: string; /** Value of the variable to be applied to all clusters launched from this template. This value is specified when assignStrategy is set to all */ value?: string; }; //# sourceMappingURL=clusterTemplateVariable.d.ts.map