MspUpgradeFtdDevicesInput

Properties

Name Type Description Notes
device_uids List[str] <p>List of device identifiers to upgrade in Security Cloud Control.</p> <p>Each entry must meet all of the following:</p> <ul> <li>The identifier is a UUID (unique identifier).</li> <li>The device is managed by the MSSP portal.</li> <li>The device type is <code>CDFMC_MANAGED_FTD</code>.</li> <li>The connectivity state is <code>ONLINE</code>.</li> <li>The device is compatible with the specified software version.</li> </ul>
ignore_maintenance_window bool <p>A boolean flag that determines whether device maintenance windows should be ignored during a full upgrade.</p> <ul> <li>If <code>stageUpgradeOnly</code> is set to <code>false</code>, this field is ignored.</li> <li>If <code>stageUpgradeOnly</code> is <code>true</code> and this field is set to <code>false</code> (the default), the upgrade will fail if any selected device is outside its maintenance window.</li> </ul> [optional]
name str Specify a human-readable name for the upgrade run. [optional]
software_version str Specify the software version to which all devices will be upgraded. [optional]
stage_upgrade_only bool A boolean value, indicating whether the upgrade should be staged. If set to true, the image will be downloaded onto the devices and readiness checks will be performed. However, the upgrade will not be applied to the devices. [optional] [default to False]

Example

from scc_firewall_manager_sdk.models.msp_upgrade_ftd_devices_input import MspUpgradeFtdDevicesInput

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

# convert the object into a dict
msp_upgrade_ftd_devices_input_dict = msp_upgrade_ftd_devices_input_instance.to_dict()
# create an instance of MspUpgradeFtdDevicesInput from a dict
msp_upgrade_ftd_devices_input_form_dict = msp_upgrade_ftd_devices_input.from_dict(msp_upgrade_ftd_devices_input_dict)

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