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,50 @@
---
id: beta-slim-discovered-applications
title: SlimDiscoveredApplications
pagination_label: SlimDiscoveredApplications
sidebar_label: SlimDiscoveredApplications
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SlimDiscoveredApplications', 'BetaSlimDiscoveredApplications']
slug: /tools/sdk/python/beta/models/slim-discovered-applications
tags: ['SDK', 'Software Development Kit', 'SlimDiscoveredApplications', 'BetaSlimDiscoveredApplications']
---
# SlimDiscoveredApplications
Discovered applications
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Unique identifier for the discovered application. | [optional]
**name** | **str** | Name of the discovered application. | [optional]
**discovery_source** | **str** | Source from which the application was discovered. | [optional]
**discovered_vendor** | **str** | The vendor associated with the discovered application. | [optional]
**description** | **str** | A brief description of the discovered application. | [optional]
**recommended_connectors** | **[]str** | List of recommended connectors for the application. | [optional]
**discovered_at** | **datetime** | The timestamp when the application was last received via an entitlement aggregation invocation or a manual csv upload, in ISO 8601 format. | [optional]
**created_at** | **datetime** | The timestamp when the application was first discovered, in ISO 8601 format. | [optional]
**status** | **str** | The status of an application within the discovery source. By default this field is set to \"ACTIVE\" when the application is discovered. If an application has been deleted from within the discovery source, the status will be set to \"INACTIVE\". | [optional]
}
## Example
```python
from sailpoint.beta.models.slim_discovered_applications import SlimDiscoveredApplications
slim_discovered_applications = SlimDiscoveredApplications(
id='',
name='ExampleApp',
discovery_source='csv',
discovered_vendor='ExampleVendor',
description='An application for managing examples.',
recommended_connectors=[ConnectorA, ConnectorB],
discovered_at='2023-01-01T12:00Z',
created_at='2023-01-01T12:00Z',
status='ACTIVE'
)
```
[[Back to top]](#)