| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| region_id |
int |
|
[optional] |
| openstack_name |
str |
|
|
| nexgen_name |
str |
|
|
| expected_provision_date |
datetime |
|
|
from hyperstack.models.future_node_update_model import FutureNodeUpdateModel
# TODO update the JSON string below
json = "{}"
# create an instance of FutureNodeUpdateModel from a JSON string
future_node_update_model_instance = FutureNodeUpdateModel.from_json(json)
# print the JSON string representation of the object
print FutureNodeUpdateModel.to_json()
# convert the object into a dict
future_node_update_model_dict = future_node_update_model_instance.to_dict()
# create an instance of FutureNodeUpdateModel from a dict
future_node_update_model_form_dict = future_node_update_model.from_dict(future_node_update_model_dict)
[Back to Model list] [Back to API list] [Back to README]