palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
28 lines • 1.09 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 { ClusterTemplateVariableClusterAssignmentAssignedBy } from './clusterTemplateVariableClusterAssignmentAssignedBy';
import type { ClusterTemplateVariableClusterAssignmentAssignmentState } from './clusterTemplateVariableClusterAssignmentAssignmentState';
/**
* Cluster variable assignment information
*/
export type ClusterTemplateVariableClusterAssignment = {
/** Specifies the actor who has made the current variable assignment */
assignedBy?: ClusterTemplateVariableClusterAssignmentAssignedBy;
/** Value assigned to the variable */
assignedValue?: string;
/** State of the variable assignment */
assignmentState: ClusterTemplateVariableClusterAssignmentAssignmentState;
/** Cluster UID */
uid: string;
/** Current running value of the variable */
value?: string;
};
//# sourceMappingURL=clusterTemplateVariableClusterAssignment.d.ts.map