Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

AttachFirewallsToVMPayload

Properties

Name Type Description Notes
firewalls List[int] Ids of the firewalls to be attached with a virtual machine.

Example

from hyperstack.models.attach_firewalls_to_vm_payload import AttachFirewallsToVMPayload

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

# convert the object into a dict
attach_firewalls_to_vm_payload_dict = attach_firewalls_to_vm_payload_instance.to_dict()
# create an instance of AttachFirewallsToVMPayload from a dict
attach_firewalls_to_vm_payload_from_dict = AttachFirewallsToVMPayload.from_dict(attach_firewalls_to_vm_payload_dict)

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