Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/HealthEvent.md
2025-08-08 17:01:56 +00:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-health-event HealthEvent HealthEvent HealthEvent pythonsdk
python
Python
sdk
HealthEvent
V2025HealthEvent
/tools/sdk/python/v2025/models/health-event
SDK
Software Development Kit
HealthEvent
V2025HealthEvent

HealthEvent

Individual error or warning event

Properties

Name Type Description Notes
detailed_message str Description of the issue [optional]
uuid str Unique identifier for the health event [optional]
url str Optional URL associated with the issue [optional]
timestamp datetime Time when the event occurred [optional]
last_notified_time_stamp datetime Last time notification was sent for this issue [optional]
cpu_utilization_percentage float CPU usage percentage [optional]
free_space_percentage float Free memory percentage [optional]
}

Example

from sailpoint.v2025.models.health_event import HealthEvent

health_event = HealthEvent(
detailed_message='CPU utilization is high',
uuid='5',
url='https://sample.com:80/',
timestamp='2025-03-25T14:46:58.605Z',
last_notified_time_stamp='2025-08-06T06:53:22.206956Z',
cpu_utilization_percentage=80,
free_space_percentage=8
)

[Back to top]