Update to python SDK docs: 13984088294

This commit is contained in:
developer-relations-sp
2025-03-21 03:35:56 +00:00
parent ab8c7f65b5
commit 5109bc43f7
96 changed files with 598 additions and 488 deletions

View File

@@ -11,15 +11,15 @@ tags: ['SDK', 'Software Development Kit', 'VAClusterStatusChangeEventHealthCheck
# VAClusterStatusChangeEventHealthCheckResult
The results of the most recent health check.
Results of the most recent health check.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**message** | **str** | Detailed message of the result of the health check. | [required]
**result_type** | **str** | The type of the health check result. | [required]
**status** | **Enum** [ 'Succeeded', 'Failed' ] | The status of the health check. | [required]
**message** | **str** | Detailed message of the health check result.. | [required]
**result_type** | **str** | Health check result type. | [required]
**status** | **Enum** [ 'Succeeded', 'Failed' ] | Health check status. | [required]
}
## Example
@@ -30,7 +30,7 @@ from sailpoint.beta.models.va_cluster_status_change_event_health_check_result im
va_cluster_status_change_event_health_check_result = VAClusterStatusChangeEventHealthCheckResult(
message='Test Connection failed with exception. Error message - java.lang Exception',
result_type='SOURCE_STATE_ERROR_CLUSTER',
status=Succeeded
status='Succeeded'
)
```