Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/OutlierContributingFeature.md
2025-05-07 14:37:48 +00:00

1.8 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-outlier-contributing-feature OutlierContributingFeature OutlierContributingFeature OutlierContributingFeature powershellsdk
powershell
PowerShell
sdk
OutlierContributingFeature
V2025OutlierContributingFeature
/tools/sdk/powershell/v2025/models/outlier-contributing-feature
SDK
Software Development Kit
OutlierContributingFeature
V2025OutlierContributingFeature

OutlierContributingFeature

Properties

Name Type Description Notes
Id String Contributing feature id [optional]
Name String The name of the feature [optional]
ValueType OutlierValueType [optional]
Value Double The feature value [optional]
Importance Double The importance of the feature. This can also be a negative value [optional]
DisplayName String The (translated if header is passed) displayName for the feature [optional]
Description String The (translated if header is passed) description for the feature [optional]
TranslationMessages OutlierFeatureTranslation [optional]

Examples

  • Prepare the resource
$OutlierContributingFeature = Initialize-V2025OutlierContributingFeature  -Id 66e38828-5017-47af-92ff-9844871352c5 `
 -Name entitlement_count `
 -ValueType null `
 -Value 1.0 `
 -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]