A virtual machine instance state.
| Name | Type | Description | Notes |
|---|---|---|---|
| state | str | The virtual machine instance state. | |
| reason | str | The virtual machine instance reason of the state. |
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)