Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 834 Bytes

File metadata and controls

27 lines (20 loc) · 834 Bytes

Cpumax

Maximum number of CPU dedicated to the process (unit is CPU core)

Properties

Name Type Description Notes

Example

from unity_sps_ogc_processes_api_python_client.models.cpumax import Cpumax

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

# convert the object into a dict
cpumax_dict = cpumax_instance.to_dict()
# create an instance of Cpumax from a dict
cpumax_from_dict = Cpumax.from_dict(cpumax_dict)

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