Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/OutlierContributingFeature.md
2025-01-28 13:29:29 -05:00

2.0 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
beta-outlier-contributing-feature OutlierContributingFeature OutlierContributingFeature OutlierContributingFeature powershellsdk
powershell
PowerShell
sdk
OutlierContributingFeature
BetaOutlierContributingFeature
/tools/sdk/powershell/beta/models/outlier-contributing-feature
SDK
Software Development Kit
OutlierContributingFeature
BetaOutlierContributingFeature

OutlierContributingFeature

Properties

Name Type Description Notes
Id Pointer to String Contributing feature id [optional]
Name Pointer to String The name of the feature [optional]
ValueType Pointer to Enum [ "INTEGER", "FLOAT" ] The data type of the value field [optional]
Value Pointer to OutlierContributingFeatureValue [optional]
Importance Pointer to Double The importance of the feature. This can also be a negative value [optional]
DisplayName Pointer to String The (translated if header is passed) displayName for the feature [optional]
Description Pointer to String The (translated if header is passed) description for the feature [optional]
TranslationMessages Pointer to OutlierFeatureTranslation [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]