MspCalculateCompatibleUpgradeVersionsInput¶
List of unique identifiers, represented as UUIDs, of the devices in Security Cloud Control. Note that all the specified devices must be in tenants managed by the MSP portal.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| device_uids | List[str] | The list of devices to calculate compatible upgrade versions for. All of the devices must exist, be associated with the managed tenant, and be in the connectivity state 'ONLINE'. | [optional] |
Example¶
from scc_firewall_manager_sdk.models.msp_calculate_compatible_upgrade_versions_input import MspCalculateCompatibleUpgradeVersionsInput
# TODO update the JSON string below
json = "{}"
# create an instance of MspCalculateCompatibleUpgradeVersionsInput from a JSON string
msp_calculate_compatible_upgrade_versions_input_instance = MspCalculateCompatibleUpgradeVersionsInput.from_json(json)
# print the JSON string representation of the object
print(MspCalculateCompatibleUpgradeVersionsInput.to_json())
# convert the object into a dict
msp_calculate_compatible_upgrade_versions_input_dict = msp_calculate_compatible_upgrade_versions_input_instance.to_dict()
# create an instance of MspCalculateCompatibleUpgradeVersionsInput from a dict
msp_calculate_compatible_upgrade_versions_input_form_dict = msp_calculate_compatible_upgrade_versions_input.from_dict(msp_calculate_compatible_upgrade_versions_input_dict)