Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/OutlierFeatureSummary.md
2025-02-03 22:09:17 +00:00

2.2 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-feature-summary OutlierFeatureSummary OutlierFeatureSummary OutlierFeatureSummary powershellsdk
powershell
PowerShell
sdk
OutlierFeatureSummary
BetaOutlierFeatureSummary
/tools/sdk/powershell/beta/models/outlier-feature-summary
SDK
Software Development Kit
OutlierFeatureSummary
BetaOutlierFeatureSummary

OutlierFeatureSummary

Properties

Name Type Description Notes
ContributingFeatureName String Contributing feature name [optional]
IdentityOutlierDisplayName String Identity display name [optional]
OutlierFeatureDisplayValues []OutlierFeatureSummaryOutlierFeatureDisplayValuesInner [optional]
FeatureDefinition String Definition of the feature [optional]
FeatureExplanation String Detailed explanation of the feature [optional]
PeerDisplayName String outlier's peer identity display name [optional]
PeerIdentityId String outlier's peer identity id [optional]
AccessItemReference [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 Access Item reference [optional]

Examples

  • Prepare the resource
$OutlierFeatureSummary = Initialize-PSSailpoint.BetaOutlierFeatureSummary  -ContributingFeatureName Rare Access `
 -IdentityOutlierDisplayName John Smith `
 -OutlierFeatureDisplayValues null `
 -FeatureDefinition Identity total number of entitlements `
 -FeatureExplanation An identity that has too much rare access has a higher change of becoming a security threat due to the unique access they possess `
 -PeerDisplayName Mary Jane `
 -PeerIdentityId 9f9d5d53ad0e48fba7352f6da9f1b8gbg `
 -AccessItemReference {displayName=All Rare Entitlements, searchPlaceholder=Search by name or description}
  • Convert the resource to JSON
$OutlierFeatureSummary | ConvertTo-JSON

[Back to top]