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

1.3 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-search-attribute-config SearchAttributeConfig SearchAttributeConfig SearchAttributeConfig powershellsdk
powershell
PowerShell
sdk
SearchAttributeConfig
V2024SearchAttributeConfig
/tools/sdk/powershell/v2024/models/search-attribute-config
SDK
Software Development Kit
SearchAttributeConfig
V2024SearchAttributeConfig

SearchAttributeConfig

Properties

Name Type Description Notes
Name String Name of the new attribute [optional]
DisplayName String The display name of the new attribute [optional]
ApplicationAttributes [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 Map of application id and their associated attribute. [optional]

Examples

  • Prepare the resource
$SearchAttributeConfig = Initialize-V2024SearchAttributeConfig  -Name newMailAttribute `
 -DisplayName New Mail Attribute `
 -ApplicationAttributes {2c91808b79fd2422017a0b35d30f3968=employeeNumber, 2c91808b79fd2422017a0b36008f396b=employeeNumber}
  • Convert the resource to JSON
$SearchAttributeConfig | ConvertTo-JSON

[Back to top]