Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/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
beta-search-attribute-config SearchAttributeConfig SearchAttributeConfig SearchAttributeConfig powershellsdk
powershell
PowerShell
sdk
SearchAttributeConfig
BetaSearchAttributeConfig
/tools/sdk/powershell/beta/models/search-attribute-config
SDK
Software Development Kit
SearchAttributeConfig
BetaSearchAttributeConfig

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-BetaSearchAttributeConfig  -Name newMailAttribute `
 -DisplayName New Mail Attribute `
 -ApplicationAttributes {2c91808b79fd2422017a0b35d30f3968=employeeNumber, 2c91808b79fd2422017a0b36008f396b=employeeNumber}
  • Convert the resource to JSON
$SearchAttributeConfig | ConvertTo-JSON

[Back to top]