Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1021 Bytes

File metadata and controls

31 lines (23 loc) · 1021 Bytes

Resources

Properties

Name Type Description Notes
nodes object Количество нод [optional]
cores Resource [optional]
memory Resource [optional]
pods Resource [optional]

Example

from timeweb_cloud_api.models.resources import Resources

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

# convert the object into a dict
resources_dict = resources_instance.to_dict()
# create an instance of Resources from a dict
resources_form_dict = resources.from_dict(resources_dict)

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