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,44 @@
---
id: beta-native-change-detection-config
title: NativeChangeDetectionConfig
pagination_label: NativeChangeDetectionConfig
sidebar_label: NativeChangeDetectionConfig
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'NativeChangeDetectionConfig', 'BetaNativeChangeDetectionConfig']
slug: /tools/sdk/python/beta/models/native-change-detection-config
tags: ['SDK', 'Software Development Kit', 'NativeChangeDetectionConfig', 'BetaNativeChangeDetectionConfig']
---
# NativeChangeDetectionConfig
Source configuration information for Native Change Detection that is read and used by account aggregation process.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**enabled** | **bool** | A flag indicating if Native Change Detection is enabled for a source. | [optional] [default to False]
**operations** | **[]str** | Operation types for which Native Change Detection is enabled for a source. | [optional]
**all_entitlements** | **bool** | A flag indicating that all entitlements participate in Native Change Detection. | [optional] [default to False]
**all_non_entitlement_attributes** | **bool** | A flag indicating that all non-entitlement account attributes participate in Native Change Detection. | [optional] [default to False]
**selected_entitlements** | **[]str** | If allEntitlements flag is off this field lists entitlements that participate in Native Change Detection. | [optional]
**selected_non_entitlement_attributes** | **[]str** | If allNonEntitlementAttributes flag is off this field lists non-entitlement account attributes that participate in Native Change Detection. | [optional]
}
## Example
```python
from sailpoint.beta.models.native_change_detection_config import NativeChangeDetectionConfig
native_change_detection_config = NativeChangeDetectionConfig(
enabled=True,
operations=[ACCOUNT_UPDATED, ACCOUNT_DELETED],
all_entitlements=False,
all_non_entitlement_attributes=False,
selected_entitlements=[memberOf, memberOfSharedMailbox],
selected_non_entitlement_attributes=[lastName, phoneNumber, objectType, servicePrincipalName]
)
```
[[Back to top]](#)