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,46 @@
---
id: v2025-source-updated
title: SourceUpdated
pagination_label: SourceUpdated
sidebar_label: SourceUpdated
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SourceUpdated', 'V2025SourceUpdated']
slug: /tools/sdk/python/v2025/models/source-updated
tags: ['SDK', 'Software Development Kit', 'SourceUpdated', 'V2025SourceUpdated']
---
# SourceUpdated
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The unique ID of the source. | [required]
**name** | **str** | The user friendly name of the source. | [required]
**type** | **str** | The connection type of the source. | [required]
**modified** | **datetime** | The date and time the source was modified. | [required]
**connector** | **str** | The connector type used to connect to the source. | [required]
**actor** | [**SourceUpdatedActor**](source-updated-actor) | | [required]
}
## Example
```python
from sailpoint.v2025.models.source_updated import SourceUpdated
source_updated = SourceUpdated(
id='2c9180866166b5b0016167c32ef31a66',
name='Corporate Active Directory',
type='DIRECT_CONNECT',
modified='2021-03-29T22:01:50.474Z',
connector='active-directory',
actor=sailpoint.v2025.models.source_updated_actor.SourceUpdated_actor(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20648',
name = 'William Wilson', )
)
```
[[Back to top]](#)