add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2025-form-element-data-source-config-options
title: FormElementDataSourceConfigOptions
pagination_label: FormElementDataSourceConfigOptions
sidebar_label: FormElementDataSourceConfigOptions
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'FormElementDataSourceConfigOptions', 'V2025FormElementDataSourceConfigOptions']
slug: /tools/sdk/python/v2025/models/form-element-data-source-config-options
tags: ['SDK', 'Software Development Kit', 'FormElementDataSourceConfigOptions', 'V2025FormElementDataSourceConfigOptions']
---
# FormElementDataSourceConfigOptions
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**label** | **str** | Label is the main label to display to the user when selecting this option | [optional]
**sub_label** | **str** | SubLabel is the sub label to display below the label in diminutive styling to help describe or identify this option | [optional]
**value** | **str** | Value is the value to save as an entry when the user selects this option | [optional]
}
## Example
```python
from sailpoint.v2025.models.form_element_data_source_config_options import FormElementDataSourceConfigOptions
form_element_data_source_config_options = FormElementDataSourceConfigOptions(
label='regression-test-access-request-07c55dd6-3056-430a-86b5-fccc395bb6c5',
sub_label='',
value='e96674448eba4ca1ba04eee999a8f3cd'
)
```
[[Back to top]](#)