Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

InstanceRemoteAccess

A virtual machine instance remote access characteristics.

Properties

Name Type Description Notes
url str The virtual machine instance remote access URL.

Example

from kowabunga.models.instance_remote_access import InstanceRemoteAccess

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

# convert the object into a dict
instance_remote_access_dict = instance_remote_access_instance.to_dict()
# create an instance of InstanceRemoteAccess from a dict
instance_remote_access_from_dict = InstanceRemoteAccess.from_dict(instance_remote_access_dict)

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