Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.42 KB

File metadata and controls

35 lines (26 loc) · 1.42 KB

WorkspaceUpdateRequest

Request object for updating a workspace

Properties

Name Type Description Notes
key str Technical key for resource name convention and version grouping. Must be unique [optional]
name str Workspace name [optional]
description str The Workspace description [optional]
tags List[str] The list of tags [optional]
solution WorkspaceSolution [optional]
additional_data Dict[str, object] Free form additional data [optional]

Example

from cosmotech_api.models.workspace_update_request import WorkspaceUpdateRequest

# TODO update the JSON string below
json = "{}"
# create an instance of WorkspaceUpdateRequest from a JSON string
workspace_update_request_instance = WorkspaceUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(WorkspaceUpdateRequest.to_json())

# convert the object into a dict
workspace_update_request_dict = workspace_update_request_instance.to_dict()
# create an instance of WorkspaceUpdateRequest from a dict
workspace_update_request_from_dict = WorkspaceUpdateRequest.from_dict(workspace_update_request_dict)

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