Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ManuallyUpdatedFieldsDTO.md
2025-01-28 13:29:29 -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
v2024-manually-updated-fields-dto ManuallyUpdatedFieldsDTO ManuallyUpdatedFieldsDTO ManuallyUpdatedFieldsDTO powershellsdk
powershell
PowerShell
sdk
ManuallyUpdatedFieldsDTO
V2024ManuallyUpdatedFieldsDTO
/tools/sdk/powershell/v2024/models/manually-updated-fields-dto
SDK
Software Development Kit
ManuallyUpdatedFieldsDTO
V2024ManuallyUpdatedFieldsDTO

ManuallyUpdatedFieldsDTO

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
$ManuallyUpdatedFieldsDTO = Initialize-PSSailpoint.V2024ManuallyUpdatedFieldsDTO  -DISPLAYNAME true `
 -DESCRIPTION true
  • Convert the resource to JSON
$ManuallyUpdatedFieldsDTO | ConvertTo-JSON

[Back to top]