You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ids of the firewalls to be attached with a virtual machine.
Example
fromhyperstack.models.attach_firewalls_to_vm_payloadimportAttachFirewallsToVMPayload# TODO update the JSON string belowjson="{}"# create an instance of AttachFirewallsToVMPayload from a JSON stringattach_firewalls_to_vm_payload_instance=AttachFirewallsToVMPayload.from_json(json)
# print the JSON string representation of the objectprint(AttachFirewallsToVMPayload.to_json())
# convert the object into a dictattach_firewalls_to_vm_payload_dict=attach_firewalls_to_vm_payload_instance.to_dict()
# create an instance of AttachFirewallsToVMPayload from a dictattach_firewalls_to_vm_payload_from_dict=AttachFirewallsToVMPayload.from_dict(attach_firewalls_to_vm_payload_dict)