Skip to main content

OutlierContributingFeature

Properties

NameTypeDescriptionNotes
IdStringContributing feature id[optional]
NameStringThe name of the feature[optional]
ValueTypeEnum [ "INTEGER", "FLOAT" ]The data type of the value field[optional]
ValueOutlierContributingFeatureValue[optional]
ImportanceDoubleThe importance of the feature. This can also be a negative value[optional]
DisplayNameStringThe (translated if header is passed) displayName for the feature[optional]
DescriptionStringThe (translated if header is passed) description for the feature[optional]
TranslationMessagesOutlierFeatureTranslation[optional]

Examples

  • Prepare the resource
$OutlierContributingFeature = Initialize-PSSailpoint.BetaOutlierContributingFeature  -Id 66e38828-5017-47af-92ff-9844871352c5 `
-Name entitlement_count `
-ValueType INTEGER `
-Value null `
-Importance -0.15 `
-DisplayName Number of entitlements `
-Description The total number of entitlements belonging to an identity `
-TranslationMessages null
  • Convert the resource to JSON
$OutlierContributingFeature | ConvertTo-JSON

[Back to top]