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,35 @@
|
||||
---
|
||||
id: beta-request-on-behalf-of-config
|
||||
title: RequestOnBehalfOfConfig
|
||||
pagination_label: RequestOnBehalfOfConfig
|
||||
sidebar_label: RequestOnBehalfOfConfig
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'RequestOnBehalfOfConfig', 'BetaRequestOnBehalfOfConfig']
|
||||
slug: /tools/sdk/python/beta/models/request-on-behalf-of-config
|
||||
tags: ['SDK', 'Software Development Kit', 'RequestOnBehalfOfConfig', 'BetaRequestOnBehalfOfConfig']
|
||||
---
|
||||
|
||||
# RequestOnBehalfOfConfig
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**allow_request_on_behalf_of_anyone_by_anyone** | **bool** | If this is true, anyone can request access for anyone. | [optional] [default to False]
|
||||
**allow_request_on_behalf_of_employee_by_manager** | **bool** | If this is true, a manager can request access for his or her direct reports. | [optional] [default to False]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.request_on_behalf_of_config import RequestOnBehalfOfConfig
|
||||
|
||||
request_on_behalf_of_config = RequestOnBehalfOfConfig(
|
||||
allow_request_on_behalf_of_anyone_by_anyone=True,
|
||||
allow_request_on_behalf_of_employee_by_manager=True
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user