AsaFailoverMate¶
(High Availability ASAs only) Information on the failover mate of this device.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| chassis_serial | str | (High Availability ASAs only) The serial number of the chassis. | [optional] |
| failover_state | str | (High Availability ASAs only) Failover state of this device. | [optional] |
| serial | str | (High Availability ASAs only) The serial number of the device. This is typically used for licensing, and is not the same as the chassis' serial number. | [optional] |
| software_version | str | (High Availability ASAs only) The version of the software running on the device. | [optional] |
Example¶
from scc_firewall_manager_sdk.models.asa_failover_mate import AsaFailoverMate
# TODO update the JSON string below
json = "{}"
# create an instance of AsaFailoverMate from a JSON string
asa_failover_mate_instance = AsaFailoverMate.from_json(json)
# print the JSON string representation of the object
print(AsaFailoverMate.to_json())
# convert the object into a dict
asa_failover_mate_dict = asa_failover_mate_instance.to_dict()
# create an instance of AsaFailoverMate from a dict
asa_failover_mate_form_dict = asa_failover_mate.from_dict(asa_failover_mate_dict)