Skip to main content

AccessRequestRecommendationConfigDto

Properties

NameTypeDescriptionNotes
score_thresholdfloatThe value that internal calculations need to exceed for recommendations to be made.[required]
start_date_attributestrUse to map an attribute name for determining identities' start date.[optional]
restriction_attributestrUse to only give recommendations based on this attribute.[optional]
mover_attributestrUse to map an attribute name for determining whether identities are movers.[optional]
joiner_attributestrUse to map an attribute name for determining whether identities are joiners.[optional]
use_restriction_attributeboolUse only the attribute named in restrictionAttribute to make recommendations.[optional] [default to False]
}

Example

from sailpoint.v2024.models.access_request_recommendation_config_dto import AccessRequestRecommendationConfigDto

access_request_recommendation_config_dto = AccessRequestRecommendationConfigDto(
score_threshold=0.5,
start_date_attribute='startDate',
restriction_attribute='location',
mover_attribute='isMover',
joiner_attribute='isJoiner',
use_restriction_attribute=True
)

[Back to top]