Skip to main content

Searchattributeconfig

Properties

NameTypeDescriptionNotes
namestrName of the new attribute[optional]
display_namestrThe display name of the new attribute[optional]
application_attributesobjectMap of application id and their associated attribute.[optional]
}

Example

from sailpoint.search_attribute_configuration.models.searchattributeconfig import Searchattributeconfig

searchattributeconfig = Searchattributeconfig(
name='newMailAttribute',
display_name='New Mail Attribute',
application_attributes={"2c91808b79fd2422017a0b35d30f3968":"employeeNumber","2c91808b79fd2422017a0b36008f396b":"employeeNumber"}
)

[Back to top]