Skip to main content

Privilegedrecommendationgroup

Properties

NameTypeDescriptionNotes
EntitlementNameStringThe name of the entitlement shared across all instances in this group.[optional]
ConnectorTypeStringThe connector type associated with all instances in this group.[optional]
RecommendationScoreStringA decimal string representing the confidence score of the privilege recommendation (0.0-1.0).[optional]
OrgCountInt32The number of organizations in which this entitlement appears as privileged.[optional]
InstanceCountInt32The total number of individual entitlement instances in this group.[optional]
Instances[]PrivilegedrecommendationinstanceThe individual entitlement instances belonging to this group.[optional]

Examples

  • Prepare the resource
$Privilegedrecommendationgroup = Initialize-Privilegedrecommendationgroup  -EntitlementName Domain Admins `
-ConnectorType Active Directory - Direct `
-RecommendationScore .85 `
-OrgCount 8 `
-InstanceCount 2 `
-Instances null
  • Convert the resource to JSON
$Privilegedrecommendationgroup | ConvertTo-JSON

[Back to top]