Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/VAClusterStatusChangeEvent.md
2025-04-01 09:23:12 -04:00

1.6 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-va-cluster-status-change-event VAClusterStatusChangeEvent VAClusterStatusChangeEvent VAClusterStatusChangeEvent powershellsdk
powershell
PowerShell
sdk
VAClusterStatusChangeEvent
V2025VAClusterStatusChangeEvent
/tools/sdk/powershell/v2025/models/va-cluster-status-change-event
SDK
Software Development Kit
VAClusterStatusChangeEvent
V2025VAClusterStatusChangeEvent

VAClusterStatusChangeEvent

Properties

Name Type Description Notes
Created System.DateTime The date and time the status change occurred. [required]
Type Enum [ "SOURCE", "CLUSTER" ] The type of the object that initiated this event. [required]
Application VAClusterStatusChangeEventApplication [required]
HealthCheckResult VAClusterStatusChangeEventHealthCheckResult [required]
PreviousHealthCheckResult VAClusterStatusChangeEventPreviousHealthCheckResult [required]

Examples

  • Prepare the resource
$VAClusterStatusChangeEvent = Initialize-PSSailpoint.V2025VAClusterStatusChangeEvent  -Created 2020-06-29T22:01:50.474Z `
 -Type CLUSTER `
 -Application null `
 -HealthCheckResult null `
 -PreviousHealthCheckResult null
  • Convert the resource to JSON
$VAClusterStatusChangeEvent | ConvertTo-JSON

[Back to top]