mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
---
|
||||
id: beta-entitlement-request-config
|
||||
title: EntitlementRequestConfig
|
||||
pagination_label: EntitlementRequestConfig
|
||||
sidebar_label: EntitlementRequestConfig
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'EntitlementRequestConfig', 'BetaEntitlementRequestConfig']
|
||||
slug: /tools/sdk/python/beta/models/entitlement-request-config
|
||||
tags: ['SDK', 'Software Development Kit', 'EntitlementRequestConfig', 'BetaEntitlementRequestConfig']
|
||||
---
|
||||
|
||||
# EntitlementRequestConfig
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**access_request_config** | [**EntitlementAccessRequestConfig**](entitlement-access-request-config) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.entitlement_request_config import EntitlementRequestConfig
|
||||
|
||||
entitlement_request_config = EntitlementRequestConfig(
|
||||
access_request_config=sailpoint.beta.models.entitlement_access_request_config.EntitlementAccessRequestConfig(
|
||||
approval_schemes = [
|
||||
sailpoint.beta.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]](#)
|
||||
|
||||
Reference in New Issue
Block a user