| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| regions | List[str] | [optional] | |
| example_metadata | str | [optional] |
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)