Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AccessProfileBulkDeleteRequest.md
2025-02-03 22:09:17 +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-request AccessProfileBulkDeleteRequest AccessProfileBulkDeleteRequest AccessProfileBulkDeleteRequest powershellsdk
powershell
PowerShell
sdk
AccessProfileBulkDeleteRequest
V2024AccessProfileBulkDeleteRequest
/tools/sdk/powershell/v2024/models/access-profile-bulk-delete-request
SDK
Software Development Kit
AccessProfileBulkDeleteRequest
V2024AccessProfileBulkDeleteRequest

AccessProfileBulkDeleteRequest

Properties

Name Type Description Notes
AccessProfileIds []String List of IDs of Access Profiles to be deleted. [optional]
BestEffortOnly Boolean 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]

Examples

  • Prepare the resource
$AccessProfileBulkDeleteRequest = Initialize-PSSailpoint.V2024AccessProfileBulkDeleteRequest  -AccessProfileIds [2c9180847812e0b1017817051919ecca, 2c9180887812e0b201781e129f151816] `
 -BestEffortOnly true
  • Convert the resource to JSON
$AccessProfileBulkDeleteRequest | ConvertTo-JSON

[Back to top]