Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 956 Bytes

File metadata and controls

31 lines (21 loc) · 956 Bytes

CpuMemoryConfig

Properties

Name Type Description Notes
cpu object [optional]
memory object [optional]

Example

from cloudharness_model.models.cpu_memory_config import CpuMemoryConfig

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

# convert the object into a dict
cpu_memory_config_dict = cpu_memory_config_instance.to_dict()
# create an instance of CpuMemoryConfig from a dict
cpu_memory_config_from_dict = CpuMemoryConfig.from_dict(cpu_memory_config_dict)

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