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

1.6 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
v2025-access-profile-update-item AccessProfileUpdateItem AccessProfileUpdateItem AccessProfileUpdateItem powershellsdk
powershell
PowerShell
sdk
AccessProfileUpdateItem
V2025AccessProfileUpdateItem
/tools/sdk/powershell/v2025/models/access-profile-update-item
SDK
Software Development Kit
AccessProfileUpdateItem
V2025AccessProfileUpdateItem

AccessProfileUpdateItem

Properties

Name Type Description Notes
Id String Identifier of Access Profile in bulk update request. [required]
Requestable Boolean Access Profile requestable or not. [required]
Status String The HTTP response status code returned for an individual Access Profile that is requested for update during a bulk update operation. > 201 - Access profile is updated successfully. > 404 - Access profile not found. [required]
Description String Human readable status description and containing additional context information about success or failures etc. [optional]

Examples

  • Prepare the resource
$AccessProfileUpdateItem = Initialize-V2025AccessProfileUpdateItem  -Id 2c7180a46faadee4016fb4e018c20642 `
 -Requestable false `
 -Status 201 `
 -Description 
> Access profile is updated successfully.

> Referenced Access profile with Id "2c7180a46faadee4016fb4e018c20642" was not found.

  • Convert the resource to JSON
$AccessProfileUpdateItem | ConvertTo-JSON

[Back to top]