| Name |
Type |
Description |
Notes |
| vms |
List[int] |
|
|
from hyperstack.models.attach_firewall_with_vm import AttachFirewallWithVM
# TODO update the JSON string below
json = "{}"
# create an instance of AttachFirewallWithVM from a JSON string
attach_firewall_with_vm_instance = AttachFirewallWithVM.from_json(json)
# print the JSON string representation of the object
print(AttachFirewallWithVM.to_json())
# convert the object into a dict
attach_firewall_with_vm_dict = attach_firewall_with_vm_instance.to_dict()
# create an instance of AttachFirewallWithVM from a dict
attach_firewall_with_vm_from_dict = AttachFirewallWithVM.from_dict(attach_firewall_with_vm_dict)
[Back to Model list] [Back to API list] [Back to README]