Skip to main content

AccountAllOfRecommendation

Properties

NameTypeDescriptionNotes
typeEnum [ 'HUMAN', 'MACHINE' ]Recommended type of account.[required]
methodEnum [ 'DISCOVERY', 'SOURCE', 'CRITERIA' ]Method used to produce the recommendation. DISCOVERY - suggested by AI, SOURCE - the account comes from a source flagged as containing machine accounts, CRITERIA - the account satisfies classification criteria.[required]
}

Example

from sailpoint.v3.models.account_all_of_recommendation import AccountAllOfRecommendation

account_all_of_recommendation = AccountAllOfRecommendation(
type='MACHINE',
method='DISCOVERY'
)

[Back to top]