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>ASA</code>.</li> <li>The device has the <code>ASA_RA_VPN_HEADEND</code> role.</li> <li>The connectivity state is <code>ONLINE</code>.</li> <li>The configuration state is <code>SYNCED</code>.</li> <li>The device has a known software version.</li> </ul> <p>Device-level validation is performed asynchronously; any device that fails these checks causes the upgrade run to fail with the offending devices reported in the error message.</p> <p>A maximum of 50 devices per managed tenant is allowed.</p> |
|
| name |
str |
Specify a human-readable name for the upgrade run. |
[optional] |
| platforms |
List[MspSecureClientPlatform] |
The OS and CPU architecture combinations to upgrade. If omitted, all platforms available for the specified version are uploaded to each device. |
[optional] |
| version |
str |
Specify the Secure Client package version to which all devices will be upgraded. |
|
Example
from scc_firewall_manager_sdk.models.msp_upgrade_secure_client_packages_input import MspUpgradeSecureClientPackagesInput
# TODO update the JSON string below
json = "{}"
# create an instance of MspUpgradeSecureClientPackagesInput from a JSON string
msp_upgrade_secure_client_packages_input_instance = MspUpgradeSecureClientPackagesInput.from_json(json)
# print the JSON string representation of the object
print(MspUpgradeSecureClientPackagesInput.to_json())
# convert the object into a dict
msp_upgrade_secure_client_packages_input_dict = msp_upgrade_secure_client_packages_input_instance.to_dict()
# create an instance of MspUpgradeSecureClientPackagesInput from a dict
msp_upgrade_secure_client_packages_input_form_dict = msp_upgrade_secure_client_packages_input.from_dict(msp_upgrade_secure_client_packages_input_dict)
[Back to Model list] [Back to API list] [Back to README]