Skip to main content

Conflictingitem

Properties

NameTypeDescriptionNotes
IdStringThe unique identifier of the conflicting access item.[required]
NameStringThe display name of the conflicting access item.[optional]
TypeEnum [ "ENTITLEMENT", "ACCESS_PROFILE", "ROLE" ]The type of access object represented by the conflicting item.[required]
SourceRefConflictingitemsourceref[optional]
DescriptionStringOptional human-readable description of the conflicting item.[optional]

Examples

  • Prepare the resource
$Conflictingitem = Initialize-Conflictingitem  -Id 3e07886555ed43cfb83c85c58d2016e6 `
-Name Administrator `
-Type ENTITLEMENT `
-SourceRef null `
-Description Grants administrative access to the payroll application.
  • Convert the resource to JSON
$Conflictingitem | ConvertTo-JSON

[Back to top]