Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

WorkspaceServerOptions

Properties

Name Type Description Notes
auto_shutoff List[str] List of available auto-shutoff settings. [readonly]
disk_space List[DiskSpaceOption] Available disk space sizes. [readonly]
size List[InstanceSize] List of available instance sizes. [readonly]

Example

from saturn_api.models.workspace_server_options import WorkspaceServerOptions

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

# convert the object into a dict
workspace_server_options_dict = workspace_server_options_instance.to_dict()
# create an instance of WorkspaceServerOptions from a dict
workspace_server_options_from_dict = WorkspaceServerOptions.from_dict(workspace_server_options_dict)

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