mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
43
docs/tools/sdk/python/Reference/V3/Models/FieldDetailsDto.md
Normal file
43
docs/tools/sdk/python/Reference/V3/Models/FieldDetailsDto.md
Normal file
@@ -0,0 +1,43 @@
|
||||
---
|
||||
id: field-details-dto
|
||||
title: FieldDetailsDto
|
||||
pagination_label: FieldDetailsDto
|
||||
sidebar_label: FieldDetailsDto
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'FieldDetailsDto', 'FieldDetailsDto']
|
||||
slug: /tools/sdk/python/v3/models/field-details-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'FieldDetailsDto', 'FieldDetailsDto']
|
||||
---
|
||||
|
||||
# FieldDetailsDto
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**name** | **str** | The name of the attribute. | [optional]
|
||||
**transform** | **object** | The transform to apply to the field | [optional]
|
||||
**attributes** | **object** | Attributes required for the transform | [optional]
|
||||
**is_required** | **bool** | Flag indicating whether or not the attribute is required. | [optional] [readonly] [default to False]
|
||||
**type** | **str** | The type of the attribute. | [optional]
|
||||
**is_multi_valued** | **bool** | Flag indicating whether or not the attribute is multi-valued. | [optional] [default to False]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v3.models.field_details_dto import FieldDetailsDto
|
||||
|
||||
field_details_dto = FieldDetailsDto(
|
||||
name='userName',
|
||||
transform={type=rule, attributes={name=Create Unique LDAP Attribute}},
|
||||
attributes={template=${firstname}.${lastname}${uniqueCounter}, cloudMaxUniqueChecks=50, cloudMaxSize=20, cloudRequired=true},
|
||||
is_required=False,
|
||||
type='string',
|
||||
is_multi_valued=False
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user