mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 04:19:37 +00:00
1.5 KiB
1.5 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-profile-update-item | AccessProfileUpdateItem | AccessProfileUpdateItem | AccessProfileUpdateItem | pythonsdk |
|
/tools/sdk/python/beta/models/access-profile-update-item |
|
AccessProfileUpdateItem
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Identifier of Access Profile in bulk update request. | [required] |
| requestable | bool | Access Profile requestable or not. | [required] |
| status | str | The HTTP response status code returned for an individual Access Profile that is requested for update during a bulk update operation. > 201 - Access profile is updated successfully. > 404 - Access profile not found. | [required] |
| description | str | Human readable status description and containing additional context information about success or failures etc. | [optional] |
| } |
Example
from sailpoint.beta.models.access_profile_update_item import AccessProfileUpdateItem
access_profile_update_item = AccessProfileUpdateItem(
id='2c7180a46faadee4016fb4e018c20642',
requestable=False,
status='201',
description='
> Access profile is updated successfully.
> Referenced Access profile with Id "2c7180a46faadee4016fb4e018c20642" was not found.
'
)