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,34 @@
---
id: v2025-form-element-validations-set
title: FormElementValidationsSet
pagination_label: FormElementValidationsSet
sidebar_label: FormElementValidationsSet
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'FormElementValidationsSet', 'V2025FormElementValidationsSet']
slug: /tools/sdk/python/v2025/models/form-element-validations-set
tags: ['SDK', 'Software Development Kit', 'FormElementValidationsSet', 'V2025FormElementValidationsSet']
---
# FormElementValidationsSet
Set of FormElementValidation items.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**validation_type** | **Enum** [ 'REQUIRED', 'MIN_LENGTH', 'MAX_LENGTH', 'REGEX', 'DATE', 'MAX_DATE', 'MIN_DATE', 'LESS_THAN_DATE', 'PHONE', 'EMAIL', 'DATA_SOURCE', 'TEXTAREA' ] | The type of data validation that you wish to enforce, e.g., a required field, a minimum length, etc. | [optional]
}
## Example
```python
from sailpoint.v2025.models.form_element_validations_set import FormElementValidationsSet
form_element_validations_set = FormElementValidationsSet(
validation_type='REQUIRED'
)
```
[[Back to top]](#)