Skip to main content

OutlierDetected

Properties

NameTypeDescriptionNotes
IdentityOutlierDetectedIdentity[required]
OutlierTypeEnum [ "LOW_SIMILARITY" ]Identity's outlier type.[required]
ScoreDecimalDissimilarity score that determines whether the identity is an outlier, ranging from 0.0 to 1.0. The higher the score, the more likely the identity is an outlier.[required]

Examples

  • Prepare the resource
$OutlierDetected = Initialize-OutlierDetected -Identity null `
-OutlierType LOW_SIMILARITY `
-Score 0.82
  • Convert the resource to JSON
$OutlierDetected | ConvertTo-JSON

[Back to top]