Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.23 KB

FirewallingUpgradeRequest.md

File metadata and controls

29 lines (20 loc) · 1.23 KB

FirewallingUpgradeRequest

Properties

Name Type Description Notes
assign_firewalls List[str] List of IDs of firewalls the upgraded instance should be assigned to immediately. If the list is empty or this property is not provided the instance will be assigned to your current default firewall. [optional]

Example

from pfruck_contabo.models.firewalling_upgrade_request import FirewallingUpgradeRequest

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

# convert the object into a dict
firewalling_upgrade_request_dict = firewalling_upgrade_request_instance.to_dict()
# create an instance of FirewallingUpgradeRequest from a dict
firewalling_upgrade_request_from_dict = FirewallingUpgradeRequest.from_dict(firewalling_upgrade_request_dict)

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