Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/NativeChangeDetectionConfig.md
2025-05-07 14:37:48 +00:00

2.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-native-change-detection-config NativeChangeDetectionConfig NativeChangeDetectionConfig NativeChangeDetectionConfig powershellsdk
powershell
PowerShell
sdk
NativeChangeDetectionConfig
V2024NativeChangeDetectionConfig
/tools/sdk/powershell/v2024/models/native-change-detection-config
SDK
Software Development Kit
NativeChangeDetectionConfig
V2024NativeChangeDetectionConfig

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
$NativeChangeDetectionConfig = Initialize-V2024NativeChangeDetectionConfig  -Enabled true `
 -Operations [ACCOUNT_UPDATED, ACCOUNT_DELETED] `
 -AllEntitlements false `
 -AllNonEntitlementAttributes false `
 -SelectedEntitlements [memberOf, memberOfSharedMailbox] `
 -SelectedNonEntitlementAttributes [lastName, phoneNumber, objectType, servicePrincipalName]
  • Convert the resource to JSON
$NativeChangeDetectionConfig | ConvertTo-JSON

[Back to top]