mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.2 KiB
1.2 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-access-request-pre-approval1 | AccessRequestPreApproval1 | AccessRequestPreApproval1 | AccessRequestPreApproval1 | pythonsdk |
|
/tools/sdk/python/beta/models/access-request-pre-approval1 |
|
AccessRequestPreApproval1
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| approved | bool | Whether or not to approve the access request. | [required] |
| comment | str | A comment about the decision to approve or deny the request. | [required] |
| approver | str | The name of the entity that approved or denied the request. | [required] |
| } |
Example
from sailpoint.beta.models.access_request_pre_approval1 import AccessRequestPreApproval1
access_request_pre_approval1 = AccessRequestPreApproval1(
approved=False,
comment='This access should be denied, because this will cause an SOD violation.',
approver='AcmeCorpExternalIntegration'
)