Skip to main content

AccessProfileBulkDeleteResponse

Properties

NameTypeDescriptionNotes
task_idstrID of the task which is executing the bulk deletion. This can be passed to the /task-status API to track status.[optional]
pending[]strList of IDs of Access Profiles which are pending deletion.[optional]
in_use[]AccessProfileUsageList of usages of Access Profiles targeted for deletion.[optional]
}

Example

from sailpoint.beta.models.access_profile_bulk_delete_response import AccessProfileBulkDeleteResponse

access_profile_bulk_delete_response = AccessProfileBulkDeleteResponse(
task_id='2c9180867817ac4d017817c491119a20',
pending=[2c91808876438bbb017668c21919ecca, 2c91808876438bb201766e129f151816],
in_use=[
sailpoint.beta.models.access_profile_usage.AccessProfileUsage(
access_profile_id = '2c91808876438bbb017668c21919ecca',
used_by = [
sailpoint.beta.models.access_profile_usage_used_by_inner.AccessProfileUsage_usedBy_inner(
type = 'ROLE',
id = '2c8180857a9b3da0017aa03418480f9d',
name = 'Manager Role', )
], )
]
)

[Back to top]