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

1.6 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-response CommonAccessResponse CommonAccessResponse CommonAccessResponse powershellsdk
powershell
PowerShell
sdk
CommonAccessResponse
BetaCommonAccessResponse
/tools/sdk/powershell/beta/models/common-access-response
SDK
Software Development Kit
CommonAccessResponse
BetaCommonAccessResponse

CommonAccessResponse

Properties

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

Examples

  • Prepare the resource
$CommonAccessResponse = Initialize-PSSailpoint.BetaCommonAccessResponse  -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]