Skip to main content

Privilegedrecommendationinstance

Properties

NameTypeDescriptionNotes
IdStringThe unique identifier for this entitlement instance.[optional]
AttributeStringThe entitlement attribute name.[optional]
SourceIdStringThe ID of the source that owns this entitlement.[optional]
SourceNameStringThe display name of the source.[optional]
TypeStringThe entitlement type.[optional]
ValueStringThe entitlement value or distinguished name.[optional]
StatusStringThe current review status of this instance.[optional]
PrivilegeLevelStringThe currently assigned privilege level, if any.[optional]
DescriptionStringThe current description of the entitlement, if one exists.[optional]
RecommendedAtSystem.DateTimeThe timestamp when this instance was recommended.[optional]

Examples

  • Prepare the resource
$Privilegedrecommendationinstance = Initialize-Privilegedrecommendationinstance  -Id d6127d2c-bd62-4217-b187-e4b28f328080 `
-Attribute memberOf `
-SourceId 2c9180877a7c8e88017a7d1234567890 `
-SourceName AD Corp `
-Type group `
-Value CN=Domain Admins,CN=Users,DC=corp,DC=example,DC=com `
-Status suggested `
-PrivilegeLevel high `
-Description Grants full administrative access to the domain. `
-RecommendedAt 2026-03-01T00:00Z
  • Convert the resource to JSON
$Privilegedrecommendationinstance | ConvertTo-JSON

[Back to top]