Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 934 Bytes

File metadata and controls

31 lines (22 loc) · 934 Bytes

UpdateGPU

Properties

Name Type Description Notes
name str [optional]
regions List[str] [optional]
example_metadata str A valid JSON string. [optional]

Example

from hyperstack.models.update_gpu import UpdateGPU

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

# convert the object into a dict
update_gpu_dict = update_gpu_instance.to_dict()
# create an instance of UpdateGPU from a dict
update_gpu_form_dict = update_gpu.from_dict(update_gpu_dict)

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