Update python SDK docs: 15031139402

This commit is contained in:
developer-relations-sp
2025-05-14 21:09:18 +00:00
parent 7a610557d9
commit 71ee6c0c3d
46 changed files with 427 additions and 209 deletions

View File

@@ -19,6 +19,7 @@ Name | Type | Description | Notes
**approval_schemes** | [**[]EntitlementApprovalScheme**](entitlement-approval-scheme) | Ordered list of approval steps for the access request. Empty when no approval is required. | [optional]
**request_comment_required** | **bool** | If the requester must provide a comment during access request. | [optional] [default to False]
**denial_comment_required** | **bool** | If the reviewer must provide a comment when denying the access request. | [optional] [default to False]
**reauthorization_required** | **bool** | Is Reauthorization Required | [optional] [default to False]
}
## Example
@@ -33,7 +34,8 @@ approval_schemes=[
approver_id = 'e3eab852-8315-467f-9de7-70eda97f63c8', )
],
request_comment_required=True,
denial_comment_required=False
denial_comment_required=False,
reauthorization_required=False
)
```