starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,46 @@
---
id: beta-source-created
title: SourceCreated
pagination_label: SourceCreated
sidebar_label: SourceCreated
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SourceCreated', 'BetaSourceCreated']
slug: /tools/sdk/python/beta/models/source-created
tags: ['SDK', 'Software Development Kit', 'SourceCreated', 'BetaSourceCreated']
---
# SourceCreated
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The unique ID of the source. | [required]
**name** | **str** | Human friendly name of the source. | [required]
**type** | **str** | The connection type. | [required]
**created** | **datetime** | The date and time the source was created. | [required]
**connector** | **str** | The connector type used to connect to the source. | [required]
**actor** | [**SourceCreatedActor**](source-created-actor) | | [required]
}
## Example
```python
from sailpoint.beta.models.source_created import SourceCreated
source_created = SourceCreated(
id='2c9180866166b5b0016167c32ef31a66',
name='Test source',
type='DIRECT_CONNECT',
created='2021-03-29T22:01:50.474Z',
connector='active-directory',
actor=sailpoint.beta.models.source_created_actor.SourceCreated_actor(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20648',
name = 'William Wilson', )
)
```
[[Back to top]](#)