Request object for creating a new workspace
| Name | Type | Description | Notes |
|---|---|---|---|
| key | string | Technical key for resource name convention and version grouping. Must be unique | [default to undefined] |
| name | string | Workspace name. This name is displayed in the sample webApp | [default to undefined] |
| description | string | The Workspace description | [optional] [default to undefined] |
| version | string | The Workspace version MAJOR.MINOR.PATCH. | [optional] [default to undefined] |
| tags | Array<string> | The list of tags | [optional] [default to undefined] |
| solution | WorkspaceSolution | [default to undefined] | |
| additionalData | { [key: string]: any; } | Free form additional data | [optional] [default to undefined] |
| security | WorkspaceSecurity | [optional] [default to undefined] |
import { WorkspaceCreateRequest } from '@cosmotech/api-ts';
const instance: WorkspaceCreateRequest = {
key,
name,
description,
version,
tags,
solution,
additionalData,
security,
};