FmcHealthMetrics

Properties

Name Type Description Notes
chassis_stats_health_metrics ChassisStatsHealthMetrics [optional]
cpu_health_metrics CpuHealthMetrics [optional]
device_name str The name of the device in Security Cloud Control. [optional]
device_uid str The unique identifier, represented as a UUID, of the device in Security Cloud Control. [optional]
disk_health_metrics DiskHealthMetrics [optional]
end_time datetime The end of the time period (inclusive) for which the health metrics were retrieved for this device. [optional]
ha_health_metrics HaHealthMetrics [optional]
interface_health_metrics List[InterfaceHealthMetrics] The interface health metrics for the device. [optional]
memory_health_metrics MemoryHealthMetrics [optional]
ra_vpn_session_health_metrics RaVpnSessionHealthMetrics [optional]
s2s_vpn_tunnel_health_metrics List[S2sVpnTunnelHealthMetrics] The S2S VPN tunnel health metrics for the device. The maximum number of tunnels retrieved is 1000. [optional]
start_time datetime The start of the time period (inclusive) for which the health metrics were retrieved for this device. [optional]

Example

from scc_firewall_manager_sdk.models.fmc_health_metrics import FmcHealthMetrics

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

# convert the object into a dict
fmc_health_metrics_dict = fmc_health_metrics_instance.to_dict()
# create an instance of FmcHealthMetrics from a dict
fmc_health_metrics_form_dict = fmc_health_metrics.from_dict(fmc_health_metrics_dict)

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