Skip to main content

CommonAccessResponse

Properties

NameTypeDescriptionNotes
IdStringUnique ID of the common access item[optional]
AccessCommonAccessItemAccess[optional]
StatusStringCONFIRMED or DENIED[optional]
CommonAccessTypeString[optional]
LastUpdatedSystem.DateTime[optional] [readonly]
ReviewedByUserBooleantrue if user has confirmed or denied status[optional]
LastReviewedSystem.DateTime[optional] [readonly]
CreatedByUserBoolean[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]