ClusterNode¶
(cdFMC-managed FTDs only) Information on the data nodes, which are individual units within a cluster that process and forward network traffic based on policies and configurations managed by the control node.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| chassis_serial | str | The serial number of the chassis on the device. | [optional] |
| name | str | The name of the node on the device. | [optional] |
| serial | str | The serial number of the node on the device. This is typically used for licensing, and is not the same as the chassis' serial number. | [optional] |
| software_version | str | The version of the software running on the device. | [optional] |
| status | str | The status of the cluster node. | [optional] |
| uid_on_fmc | str | The unique identifier, represented as a UUID, of the device on the FMC. | [optional] |
Example¶
from scc_firewall_manager_sdk.models.cluster_node import ClusterNode
# TODO update the JSON string below
json = "{}"
# create an instance of ClusterNode from a JSON string
cluster_node_instance = ClusterNode.from_json(json)
# print the JSON string representation of the object
print(ClusterNode.to_json())
# convert the object into a dict
cluster_node_dict = cluster_node_instance.to_dict()
# create an instance of ClusterNode from a dict
cluster_node_form_dict = cluster_node.from_dict(cluster_node_dict)