Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

ServerOptions

Properties

Name Type Description Notes
auto_shutoff List[str] List of available auto-shutoff settings for workspaces. [readonly]
disk_space List[str] List of available disk sizes for workspaces. [readonly]
sizes Dict[str, InstanceSize] Mapping of instance size names to their configurations. [readonly]

Example

from saturn_api.models.server_options import ServerOptions

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

# convert the object into a dict
server_options_dict = server_options_instance.to_dict()
# create an instance of ServerOptions from a dict
server_options_from_dict = ServerOptions.from_dict(server_options_dict)

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