Request object for updating a workspace
| Name | Type | Description | Notes |
|---|---|---|---|
| key | string | Technical key for resource name convention and version grouping. Must be unique | [optional] [default to undefined] |
| name | string | Workspace name | [optional] [default to undefined] |
| description | string | The Workspace description | [optional] [default to undefined] |
| tags | Array<string> | The list of tags | [optional] [default to undefined] |
| solution | WorkspaceSolution | [optional] [default to undefined] | |
| additionalData | { [key: string]: any; } | Free form additional data | [optional] [default to undefined] |
import { WorkspaceUpdateRequest } from '@cosmotech/api-ts';
const instance: WorkspaceUpdateRequest = {
key,
name,
description,
tags,
solution,
additionalData,
};