Skip to main content

OutliersContributingFeatureAccessItems

Properties

NameTypeDescriptionNotes
idstrThe ID of the access item[optional]
display_namestrthe display name of the access item[optional]
descriptionstrDescription of the access item.[optional]
access_typeEnum [ 'ENTITLEMENT', 'ACCESS_PROFILE', 'ROLE' ]The type of the access item.[optional]
source_namestrthe associated source name if it exists[optional]
extremely_rareboolrarest access[optional] [default to False]
}

Example

from sailpoint.beta.models.outliers_contributing_feature_access_items import OutliersContributingFeatureAccessItems

outliers_contributing_feature_access_items = OutliersContributingFeatureAccessItems(
id='2c938083633d259901633d2623ec0375',
display_name='Applied Research Access',
description='Access to research information, lab results, and schematics',
access_type='ENTITLEMENT',
source_name='appName',
extremely_rare=True
)

[Back to top]