Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/VAClusterStatusChangeEvent.md
2025-01-28 13:29:29 -05: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
v2024-va-cluster-status-change-event VAClusterStatusChangeEvent VAClusterStatusChangeEvent VAClusterStatusChangeEvent powershellsdk
powershell
PowerShell
sdk
VAClusterStatusChangeEvent
V2024VAClusterStatusChangeEvent
/tools/sdk/powershell/v2024/models/va-cluster-status-change-event
SDK
Software Development Kit
VAClusterStatusChangeEvent
V2024VAClusterStatusChangeEvent

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.V2024VAClusterStatusChangeEvent  -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]