Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/CommonAccessResponse.md
2025-02-03 22:09:17 +00: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
v2024-common-access-response CommonAccessResponse CommonAccessResponse CommonAccessResponse powershellsdk
powershell
PowerShell
sdk
CommonAccessResponse
V2024CommonAccessResponse
/tools/sdk/powershell/v2024/models/common-access-response
SDK
Software Development Kit
CommonAccessResponse
V2024CommonAccessResponse

CommonAccessResponse

Properties

Name Type Description Notes
Id String Unique ID of the common access item [optional]
Access CommonAccessItemAccess [optional]
Status String CONFIRMED or DENIED [optional]
CommonAccessType String [optional]
LastUpdated System.DateTime [optional] [readonly]
ReviewedByUser Boolean true if user has confirmed or denied status [optional]
LastReviewed System.DateTime [optional] [readonly]
CreatedByUser Boolean [optional] [default to $false]

Examples

  • Prepare the resource
$CommonAccessResponse = Initialize-PSSailpoint.V2024CommonAccessResponse  -Id 555ab47a-0d32-4813-906f-adf3567de6a4 `
 -Access null `
 -Status null `
 -CommonAccessType UNSET `
 -LastUpdated null `
 -ReviewedByUser null `
 -LastReviewed null `
 -CreatedByUser false
  • Convert the resource to JSON
$CommonAccessResponse | ConvertTo-JSON

[Back to top]