Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/CommonAccessItemAccess.md
2025-01-28 13:29:29 -05: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
v2024-common-access-item-access CommonAccessItemAccess CommonAccessItemAccess CommonAccessItemAccess powershellsdk
powershell
PowerShell
sdk
CommonAccessItemAccess
V2024CommonAccessItemAccess
/tools/sdk/powershell/v2024/models/common-access-item-access
SDK
Software Development Kit
CommonAccessItemAccess
V2024CommonAccessItemAccess

CommonAccessItemAccess

Properties

Name Type Description Notes
Id Pointer to String Common access ID [optional]
Type Pointer to CommonAccessType [optional]
Name Pointer to String Common access name [optional]
Description Pointer to String Common access description [optional]
OwnerName Pointer to String Common access owner name [optional]
OwnerId Pointer to String Common access owner ID [optional]

Examples

  • Prepare the resource
$CommonAccessItemAccess = Initialize-PSSailpoint.V2024CommonAccessItemAccess  -Id null `
 -Type null `
 -Name null `
 -Description null `
 -OwnerName null `
 -OwnerId null
  • Convert the resource to JSON
$CommonAccessItemAccess | ConvertTo-JSON

[Back to top]