mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
add method and model docs for powershell and python v2025
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
---
|
||||
id: v2025-access-profile-bulk-delete-response
|
||||
title: AccessProfileBulkDeleteResponse
|
||||
pagination_label: AccessProfileBulkDeleteResponse
|
||||
sidebar_label: AccessProfileBulkDeleteResponse
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'AccessProfileBulkDeleteResponse', 'V2025AccessProfileBulkDeleteResponse']
|
||||
slug: /tools/sdk/python/v2025/models/access-profile-bulk-delete-response
|
||||
tags: ['SDK', 'Software Development Kit', 'AccessProfileBulkDeleteResponse', 'V2025AccessProfileBulkDeleteResponse']
|
||||
---
|
||||
|
||||
# AccessProfileBulkDeleteResponse
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**task_id** | **str** | ID of the task which is executing the bulk deletion. This can be passed to the **/task-status** API to track status. | [optional]
|
||||
**pending** | **[]str** | List of IDs of Access Profiles which are pending deletion. | [optional]
|
||||
**in_use** | [**[]AccessProfileUsage**](access-profile-usage) | List of usages of Access Profiles targeted for deletion. | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2025.models.access_profile_bulk_delete_response import AccessProfileBulkDeleteResponse
|
||||
|
||||
access_profile_bulk_delete_response = AccessProfileBulkDeleteResponse(
|
||||
task_id='2c9180867817ac4d017817c491119a20',
|
||||
pending=[2c91808876438bbb017668c21919ecca, 2c91808876438bb201766e129f151816],
|
||||
in_use=[
|
||||
sailpoint.v2025.models.access_profile_usage.AccessProfileUsage(
|
||||
access_profile_id = '2c91808876438bbb017668c21919ecca',
|
||||
used_by = [
|
||||
sailpoint.v2025.models.access_profile_usage_used_by_inner.AccessProfileUsage_usedBy_inner(
|
||||
type = 'ROLE',
|
||||
id = '2c8180857a9b3da0017aa03418480f9d',
|
||||
name = 'Manager Role', )
|
||||
], )
|
||||
]
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user