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,40 @@
---
id: v2025-sod-exempt-criteria
title: SodExemptCriteria
pagination_label: SodExemptCriteria
sidebar_label: SodExemptCriteria
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SodExemptCriteria', 'V2025SodExemptCriteria']
slug: /tools/sdk/python/v2025/models/sod-exempt-criteria
tags: ['SDK', 'Software Development Kit', 'SodExemptCriteria', 'V2025SodExemptCriteria']
---
# SodExemptCriteria
Details of the Entitlement criteria
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**existing** | **bool** | If the entitlement already belonged to the user or not. | [optional] [default to False]
**type** | [**DtoType**](dto-type) | | [optional]
**id** | **str** | Entitlement ID | [optional]
**name** | **str** | Entitlement name | [optional]
}
## Example
```python
from sailpoint.v2025.models.sod_exempt_criteria import SodExemptCriteria
sod_exempt_criteria = SodExemptCriteria(
existing=True,
type='IDENTITY',
id='2c918085771e9d3301773b3cb66f6398',
name='My HR Entitlement'
)
```
[[Back to top]](#)