Skip to main content

Inteloutlieraccessitem

Properties

NameTypeDescriptionNotes
IdStringStable identifier of the outlier access-item row.[required]
DisplayNameStringDisplay label of the risky access item.[required]
DescriptionStringOptional descriptive text for the risky access item.[optional]
AccessTypeStringAccess item type.[required]
SourceNameStringSource name where the risky access item exists.[required]
ExtremelyRareBooleanIndicates whether analytics marked this item as extremely rare.[required]

Examples

  • Prepare the resource
$Inteloutlieraccessitem = Initialize-Inteloutlieraccessitem  -Id outlier-access-001 `
-DisplayName Example_Admin_Access `
-Description null `
-AccessType ENTITLEMENT `
-SourceName Example SaaS Source `
-ExtremelyRare false
  • Convert the resource to JSON
$Inteloutlieraccessitem | ConvertTo-JSON

[Back to top]