Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

File metadata and controls

33 lines (24 loc) · 1.16 KB

FutureNodeModel

Properties

Name Type Description Notes
expected_provision_date datetime Date and time in the format YYYY-MM-DD HH:mm:ss
id int [optional] [readonly]
nexgen_name str [optional]
openstack_name str [optional]
stocks List[FutureNodeStockModel] [optional]

Example

from hyperstack.models.future_node_model import FutureNodeModel

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

# convert the object into a dict
future_node_model_dict = future_node_model_instance.to_dict()
# create an instance of FutureNodeModel from a dict
future_node_model_from_dict = FutureNodeModel.from_dict(future_node_model_dict)

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