Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.14 KB

File metadata and controls

31 lines (24 loc) · 1.14 KB

WorkspaceUpdateRequest

Request object for updating a workspace

Properties

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]

Example

import { WorkspaceUpdateRequest } from '@cosmotech/api-ts';

const instance: WorkspaceUpdateRequest = {
    key,
    name,
    description,
    tags,
    solution,
    additionalData,
};

[Back to Model list] [Back to API list] [Back to README]