Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/AccessProfileUpdateItem.md
2025-02-20 12:59:19 -05:00

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
v2024-access-profile-update-item AccessProfileUpdateItem AccessProfileUpdateItem AccessProfileUpdateItem pythonsdk
python
Python
sdk
AccessProfileUpdateItem
V2024AccessProfileUpdateItem
/tools/sdk/python/v2024/models/access-profile-update-item
SDK
Software Development Kit
AccessProfileUpdateItem
V2024AccessProfileUpdateItem

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.v2024.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.
'
)

[Back to top]