Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1006 Bytes

File metadata and controls

31 lines (22 loc) · 1006 Bytes

InstanceState

A virtual machine instance state.

Properties

Name Type Description Notes
state str The virtual machine instance state.
reason str The virtual machine instance reason of the state.

Example

from kowabunga.models.instance_state import InstanceState

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

# convert the object into a dict
instance_state_dict = instance_state_instance.to_dict()
# create an instance of InstanceState from a dict
instance_state_from_dict = InstanceState.from_dict(instance_state_dict)

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