Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/CommonAccessItemResponse.md
2025-01-28 13:29:29 -05:00

1.5 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
beta-common-access-item-response CommonAccessItemResponse CommonAccessItemResponse CommonAccessItemResponse powershellsdk
powershell
PowerShell
sdk
CommonAccessItemResponse
BetaCommonAccessItemResponse
/tools/sdk/powershell/beta/models/common-access-item-response
SDK
Software Development Kit
CommonAccessItemResponse
BetaCommonAccessItemResponse

CommonAccessItemResponse

Properties

Name Type Description Notes
Id Pointer to String Common Access Item ID [optional]
Access Pointer to CommonAccessItemAccess [optional]
Status Pointer to CommonAccessItemState [optional]
LastUpdated Pointer to String [optional]
ReviewedByUser Pointer to Boolean [optional]
LastReviewed Pointer to String [optional]
CreatedByUser Pointer to String [optional]

Examples

  • Prepare the resource
$CommonAccessItemResponse = Initialize-PSSailpoint.BetaCommonAccessItemResponse  -Id null `
 -Access null `
 -Status null `
 -LastUpdated null `
 -ReviewedByUser null `
 -LastReviewed null `
 -CreatedByUser null
  • Convert the resource to JSON
$CommonAccessItemResponse | ConvertTo-JSON

[Back to top]