Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/PermissionDto.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

963 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
permission-dto PermissionDto PermissionDto PermissionDto powershellsdk
powershell
PowerShell
sdk
PermissionDto
/tools/sdk/powershell/beta/models/permission-dto
SDK
Software Development Kit
PermissionDto

PermissionDto

Properties

Name Type Description Notes
Rights Pointer to []String All the rights (e.g. actions) that this permission allows on the target [optional] [readonly]
Target Pointer to String The target the permission would grants rights on. [optional] [readonly]

Examples

  • Prepare the resource
$PermissionDto = Initialize-PSSailpoint.BetaPermissionDto  -Rights null `
 -Target SYS.GV_$TRANSACTION
  • Convert the resource to JSON
$PermissionDto | ConvertTo-JSON

[Back to top]