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
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
frompfruck_contabo.models.firewalling_upgrade_requestimportFirewallingUpgradeRequest# TODO update the JSON string belowjson="{}"# create an instance of FirewallingUpgradeRequest from a JSON stringfirewalling_upgrade_request_instance=FirewallingUpgradeRequest.from_json(json)
# print the JSON string representation of the objectprint(FirewallingUpgradeRequest.to_json())
# convert the object into a dictfirewalling_upgrade_request_dict=firewalling_upgrade_request_instance.to_dict()
# create an instance of FirewallingUpgradeRequest from a dictfirewalling_upgrade_request_from_dict=FirewallingUpgradeRequest.from_dict(firewalling_upgrade_request_dict)