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,41 @@
---
id: v2025-source-entitlement-request-config
title: SourceEntitlementRequestConfig
pagination_label: SourceEntitlementRequestConfig
sidebar_label: SourceEntitlementRequestConfig
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SourceEntitlementRequestConfig', 'V2025SourceEntitlementRequestConfig']
slug: /tools/sdk/python/v2025/models/source-entitlement-request-config
tags: ['SDK', 'Software Development Kit', 'SourceEntitlementRequestConfig', 'V2025SourceEntitlementRequestConfig']
---
# SourceEntitlementRequestConfig
Entitlement Request Configuration
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**access_request_config** | [**EntitlementAccessRequestConfig**](entitlement-access-request-config) | | [optional]
}
## Example
```python
from sailpoint.v2025.models.source_entitlement_request_config import SourceEntitlementRequestConfig
source_entitlement_request_config = SourceEntitlementRequestConfig(
access_request_config=sailpoint.v2025.models.entitlement_access_request_config.EntitlementAccessRequestConfig(
approval_schemes = [
sailpoint.v2025.models.entitlement_approval_scheme.EntitlementApprovalScheme(
approver_type = 'GOVERNANCE_GROUP',
approver_id = 'e3eab852-8315-467f-9de7-70eda97f63c8', )
],
request_comment_required = True,
denial_comment_required = False, )
)
```
[[Back to top]](#)