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

1.3 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-bulk-delete-request AccessProfileBulkDeleteRequest AccessProfileBulkDeleteRequest AccessProfileBulkDeleteRequest pythonsdk
python
Python
sdk
AccessProfileBulkDeleteRequest
BetaAccessProfileBulkDeleteRequest
/tools/sdk/python/beta/models/access-profile-bulk-delete-request
SDK
Software Development Kit
AccessProfileBulkDeleteRequest
BetaAccessProfileBulkDeleteRequest

AccessProfileBulkDeleteRequest

Properties

Name Type Description Notes
access_profile_ids []str List of IDs of Access Profiles to be deleted. [optional]
best_effort_only bool If true, silently skip over any of the specified Access Profiles if they cannot be deleted because they are in use. If false, no deletions will be attempted if any of the Access Profiles are in use. [optional]
}

Example

from sailpoint.beta.models.access_profile_bulk_delete_request import AccessProfileBulkDeleteRequest

access_profile_bulk_delete_request = AccessProfileBulkDeleteRequest(
access_profile_ids=[2c9180847812e0b1017817051919ecca, 2c9180887812e0b201781e129f151816],
best_effort_only=True
)

[Back to top]