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

1.5 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-role-bulk-update-response RoleBulkUpdateResponse RoleBulkUpdateResponse RoleBulkUpdateResponse powershellsdk
powershell
PowerShell
sdk
RoleBulkUpdateResponse
V2024RoleBulkUpdateResponse
/tools/sdk/powershell/v2024/models/role-bulk-update-response
SDK
Software Development Kit
RoleBulkUpdateResponse
V2024RoleBulkUpdateResponse

RoleBulkUpdateResponse

Properties

Name Type Description Notes
Id String ID of the task which is executing the bulk update. This also used in to the bulk-update/** API to track status. [optional]
Type String Type of the bulk update object. [optional]
Status Enum [ "CREATED", "PRE_PROCESS", "PRE_PROCESS_COMPLETED", "POST_PROCESS", "COMPLETED", "CHUNK_PENDING", "CHUNK_PROCESSING" ] The status of the bulk update request, could also checked by getBulkUpdateStatus API [optional]
Created System.DateTime Time when the bulk update request was created [optional]

Examples

  • Prepare the resource
$RoleBulkUpdateResponse = Initialize-V2024RoleBulkUpdateResponse  -Id 2c9180867817ac4d017817c491119a20 `
 -Type Role `
 -Status CREATED `
 -Created 2020-10-08T18:33:52.029Z
  • Convert the resource to JSON
$RoleBulkUpdateResponse | ConvertTo-JSON

[Back to top]