Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 951 Bytes

File metadata and controls

31 lines (22 loc) · 951 Bytes

KaktusCaps

A Kaktus computing node capability.

Properties

Name Type Description Notes
cpu KaktusCPU
memory int The Kaktus computing node memory size (bytes).

Example

from kowabunga.models.kaktus_caps import KaktusCaps

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

# convert the object into a dict
kaktus_caps_dict = kaktus_caps_instance.to_dict()
# create an instance of KaktusCaps from a dict
kaktus_caps_from_dict = KaktusCaps.from_dict(kaktus_caps_dict)

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