UpgradeAsaDeviceInput

Properties

Name Type Description Notes
asdm_version str The target ASDM software version to upgrade the device to. [optional]
force_upgrade bool A boolean value, indicating whether the upgrade should be forced. If this is set to true, the upgrade (staged or not) will be executed even if any staged upgrade exists on the device [optional] [default to False]
ignore_maintenance_window bool A boolean value, indicating whether device maintenance window should be ignored. If this is set to true, upgrade will be allowed even if device is outside maintenance window. [optional]
name str An optional name for the upgrade operation to help identify and track the upgrade. [optional]
software_version str The target ASA firmware version to upgrade the device to. [optional]
stage_upgrade bool A boolean value, indicating whether the upgrade should be staged. If this is set to true, the image will be downloaded on to the device and readiness checks will be performed. However, the upgrade will not be applied to the device. [optional] [default to False]

Example

from scc_firewall_manager_sdk.models.upgrade_asa_device_input import UpgradeAsaDeviceInput

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

# convert the object into a dict
upgrade_asa_device_input_dict = upgrade_asa_device_input_instance.to_dict()
# create an instance of UpgradeAsaDeviceInput from a dict
upgrade_asa_device_input_form_dict = upgrade_asa_device_input.from_dict(upgrade_asa_device_input_dict)

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