Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AccessProfileBulkDeleteResponse.md
2025-05-07 14:37:48 +00:00

1.4 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-bulk-delete-response AccessProfileBulkDeleteResponse AccessProfileBulkDeleteResponse AccessProfileBulkDeleteResponse powershellsdk
powershell
PowerShell
sdk
AccessProfileBulkDeleteResponse
V2024AccessProfileBulkDeleteResponse
/tools/sdk/powershell/v2024/models/access-profile-bulk-delete-response
SDK
Software Development Kit
AccessProfileBulkDeleteResponse
V2024AccessProfileBulkDeleteResponse

AccessProfileBulkDeleteResponse

Properties

Name Type Description Notes
TaskId String ID of the task which is executing the bulk deletion. This can be passed to the /task-status API to track status. [optional]
Pending []String List of IDs of Access Profiles which are pending deletion. [optional]
InUse []AccessProfileUsage List of usages of Access Profiles targeted for deletion. [optional]

Examples

  • Prepare the resource
$AccessProfileBulkDeleteResponse = Initialize-V2024AccessProfileBulkDeleteResponse  -TaskId 2c9180867817ac4d017817c491119a20 `
 -Pending [2c91808876438bbb017668c21919ecca, 2c91808876438bb201766e129f151816] `
 -InUse null
  • Convert the resource to JSON
$AccessProfileBulkDeleteResponse | ConvertTo-JSON

[Back to top]