Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/AccessProfileRole.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
access-profile-role AccessProfileRole AccessProfileRole AccessProfileRole powershellsdk
powershell
PowerShell
sdk
AccessProfileRole
AccessProfileRole
/tools/sdk/powershell/v3/models/access-profile-role
SDK
Software Development Kit
AccessProfileRole
AccessProfileRole

AccessProfileRole

Properties

Name Type Description Notes
Id String The unique ID of the referenced object. [optional]
Name String The human readable name of the referenced object. [optional]
DisplayName String [optional]
Description String Description of access item. [optional]
Type String Type of the access item. [optional]
Owner DisplayReference [optional]
Disabled Boolean [optional]
Revocable Boolean [optional]

Examples

  • Prepare the resource
$AccessProfileRole = Initialize-AccessProfileRole  -Id 2c91808568c529c60168cca6f90c1313 `
 -Name John Doe `
 -DisplayName John Q. Doe `
 -Description null `
 -Type ROLE `
 -Owner null `
 -Disabled null `
 -Revocable null
  • Convert the resource to JSON
$AccessProfileRole | ConvertTo-JSON

[Back to top]