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,43 @@
---
id: beta-outliers-contributing-feature-access-items
title: OutliersContributingFeatureAccessItems
pagination_label: OutliersContributingFeatureAccessItems
sidebar_label: OutliersContributingFeatureAccessItems
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'OutliersContributingFeatureAccessItems', 'BetaOutliersContributingFeatureAccessItems']
slug: /tools/sdk/python/beta/models/outliers-contributing-feature-access-items
tags: ['SDK', 'Software Development Kit', 'OutliersContributingFeatureAccessItems', 'BetaOutliersContributingFeatureAccessItems']
---
# OutliersContributingFeatureAccessItems
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The ID of the access item | [optional]
**display_name** | **str** | the display name of the access item | [optional]
**description** | **str** | Description of the access item. | [optional]
**access_type** | **Enum** [ 'ENTITLEMENT', 'ACCESS_PROFILE', 'ROLE' ] | The type of the access item. | [optional]
**source_name** | **str** | the associated source name if it exists | [optional]
**extremely_rare** | **bool** | rarest access | [optional] [default to False]
}
## Example
```python
from sailpoint.beta.models.outliers_contributing_feature_access_items import OutliersContributingFeatureAccessItems
outliers_contributing_feature_access_items = OutliersContributingFeatureAccessItems(
id='2c938083633d259901633d2623ec0375',
display_name='Applied Research Access',
description='Access to research information, lab results, and schematics',
access_type='ENTITLEMENT',
source_name='appName',
extremely_rare=True
)
```
[[Back to top]](#)