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

2.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
v2025-requested-item-account-selections RequestedItemAccountSelections RequestedItemAccountSelections RequestedItemAccountSelections powershellsdk
powershell
PowerShell
sdk
RequestedItemAccountSelections
V2025RequestedItemAccountSelections
/tools/sdk/powershell/v2025/models/requested-item-account-selections
SDK
Software Development Kit
RequestedItemAccountSelections
V2025RequestedItemAccountSelections

RequestedItemAccountSelections

Properties

Name Type Description Notes
Description String The description for this requested item [optional]
AccountsSelectionBlocked Boolean This field indicates if account selections are not allowed for this requested item. * If true, this field indicates that account selections will not be available for this item and user combination. In this case, no account selections should be provided in the access request for this item and user combination, irrespective of whether the user has single or multiple accounts on a source. * An example is where a user is requesting an access profile that is already assigned to one of their accounts. [optional] [default to $false]
AccountsSelectionBlockedReason String If account selections are not allowed for an item, this field will denote the reason. [optional]
Type Enum [ "ACCESS_PROFILE", "ROLE", "ENTITLEMENT" ] The type of the item being requested. [optional]
Id String The id of the requested item [optional]
Name String The name of the requested item [optional]
Sources []SourceAccountSelections The details for the sources and accounts for the requested item and identity combination [optional]

Examples

  • Prepare the resource
$RequestedItemAccountSelections = Initialize-V2025RequestedItemAccountSelections  -Description An access profile for the admins `
 -AccountsSelectionBlocked false `
 -AccountsSelectionBlockedReason ACCESS_PROFILE_ALREADY_ASSIGNED_TO_AN_ACCOUNT `
 -Type ACCESS_PROFILE `
 -Id 720fd239701344aea76c93ba91376aec `
 -Name Test Access Profile `
 -Sources null
  • Convert the resource to JSON
$RequestedItemAccountSelections | ConvertTo-JSON

[Back to top]