starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-search-attribute-config
title: SearchAttributeConfig
pagination_label: SearchAttributeConfig
sidebar_label: SearchAttributeConfig
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SearchAttributeConfig', 'V2024SearchAttributeConfig']
slug: /tools/sdk/python/v2024/models/search-attribute-config
tags: ['SDK', 'Software Development Kit', 'SearchAttributeConfig', 'V2024SearchAttributeConfig']
---
# SearchAttributeConfig
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | Name of the new attribute | [optional]
**display_name** | **str** | The display name of the new attribute | [optional]
**application_attributes** | **object** | Map of application id and their associated attribute. | [optional]
}
## Example
```python
from sailpoint.v2024.models.search_attribute_config import SearchAttributeConfig
search_attribute_config = SearchAttributeConfig(
name='newMailAttribute',
display_name='New Mail Attribute',
application_attributes={2c91808b79fd2422017a0b35d30f3968=employeeNumber, 2c91808b79fd2422017a0b36008f396b=employeeNumber}
)
```
[[Back to top]](#)