CompatibleDevice

Information about a device that is compatible with a specific ASA upgrade version.

Properties

Name Type Description Notes
current_software_version str The software version currently running on the device [optional]
hardware_model str The hardware model of the device
managed_tenant_display_name str The display name of the managed tenant in CDO. [optional]
managed_tenant_name str The name of the managed tenant in CDO. [optional]
managed_tenant_uid str The unique identifier, represented as a UUID, of the managed tenant in Security Cloud Control that this device belongs to.
name str The name of the device
uid str The unique identifier, represented as a UUID, of the device in Security Cloud Control.

Example

from scc_firewall_manager_sdk.models.compatible_device import CompatibleDevice

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

# convert the object into a dict
compatible_device_dict = compatible_device_instance.to_dict()
# create an instance of CompatibleDevice from a dict
compatible_device_form_dict = compatible_device.from_dict(compatible_device_dict)

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