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,45 @@
---
id: v2025-native-change-detection-config
title: NativeChangeDetectionConfig
pagination_label: NativeChangeDetectionConfig
sidebar_label: NativeChangeDetectionConfig
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'NativeChangeDetectionConfig', 'V2025NativeChangeDetectionConfig']
slug: /tools/sdk/powershell/v2025/models/native-change-detection-config
tags: ['SDK', 'Software Development Kit', 'NativeChangeDetectionConfig', 'V2025NativeChangeDetectionConfig']
---
# NativeChangeDetectionConfig
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Enabled** | **Boolean** | A flag indicating if Native Change Detection is enabled for a source. | [optional] [default to $false]
**Operations** | **[]String** | Operation types for which Native Change Detection is enabled for a source. | [optional]
**AllEntitlements** | **Boolean** | A flag indicating that all entitlements participate in Native Change Detection. | [optional] [default to $false]
**AllNonEntitlementAttributes** | **Boolean** | A flag indicating that all non-entitlement account attributes participate in Native Change Detection. | [optional] [default to $false]
**SelectedEntitlements** | **[]String** | If allEntitlements flag is off this field lists entitlements that participate in Native Change Detection. | [optional]
**SelectedNonEntitlementAttributes** | **[]String** | If allNonEntitlementAttributes flag is off this field lists non-entitlement account attributes that participate in Native Change Detection. | [optional]
## Examples
- Prepare the resource
```powershell
$NativeChangeDetectionConfig = Initialize-PSSailpoint.V2025NativeChangeDetectionConfig -Enabled true `
-Operations [ACCOUNT_UPDATED, ACCOUNT_DELETED] `
-AllEntitlements false `
-AllNonEntitlementAttributes false `
-SelectedEntitlements [memberOf, memberOfSharedMailbox] `
-SelectedNonEntitlementAttributes [lastName, phoneNumber, objectType, servicePrincipalName]
```
- Convert the resource to JSON
```powershell
$NativeChangeDetectionConfig | ConvertTo-JSON
```
[[Back to top]](#)