Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/EntitlementManuallyUpdatedFields.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

1.7 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
entitlement-manually-updated-fields EntitlementManuallyUpdatedFields EntitlementManuallyUpdatedFields EntitlementManuallyUpdatedFields powershellsdk
powershell
PowerShell
sdk
EntitlementManuallyUpdatedFields
/tools/sdk/powershell/beta/models/entitlement-manually-updated-fields
SDK
Software Development Kit
EntitlementManuallyUpdatedFields

EntitlementManuallyUpdatedFields

Properties

Name Type Description Notes
DISPLAYNAME Pointer to Boolean True if the entitlements name was updated manually via entitlement import csv or patch endpoint. False means that property value has not been change after first entitlement aggregation. Field refers to Entitlement response schema > name property. [optional] [default to $false]
DESCRIPTION Pointer to Boolean True if the entitlement description was updated manually via entitlement import csv or patch endpoint. False means that property value has not been change after first entitlement aggregation. Field refers to Entitlement response schema > description property. [optional] [default to $false]

Examples

  • Prepare the resource
$EntitlementManuallyUpdatedFields = Initialize-PSSailpoint.BetaEntitlementManuallyUpdatedFields  -DISPLAYNAME true `
 -DESCRIPTION true
  • Convert the resource to JSON
$EntitlementManuallyUpdatedFields | ConvertTo-JSON

[Back to top]