add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
---
id: v2025-va-cluster-status-change-event-application
title: VAClusterStatusChangeEventApplication
pagination_label: VAClusterStatusChangeEventApplication
sidebar_label: VAClusterStatusChangeEventApplication
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'VAClusterStatusChangeEventApplication', 'V2025VAClusterStatusChangeEventApplication']
slug: /tools/sdk/python/v2025/models/va-cluster-status-change-event-application
tags: ['SDK', 'Software Development Kit', 'VAClusterStatusChangeEventApplication', 'V2025VAClusterStatusChangeEventApplication']
---
# VAClusterStatusChangeEventApplication
Details about the `CLUSTER` or `SOURCE` that initiated this event.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The GUID of the application | [required]
**name** | **str** | The name of the application | [required]
**attributes** | **map[string]object** | Custom map of attributes for a source. This will only be populated if type is `SOURCE` and the source has a proxy. | [required]
}
## Example
```python
from sailpoint.v2025.models.va_cluster_status_change_event_application import VAClusterStatusChangeEventApplication
va_cluster_status_change_event_application = VAClusterStatusChangeEventApplication(
id='2c9180866166b5b0016167c32ef31a66',
name='Production VA Cluster',
attributes={ }
)
```
[[Back to top]](#)