Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/RoleMiningIdentity.md
2025-02-20 12:59:19 -05:00

947 B

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-role-mining-identity RoleMiningIdentity RoleMiningIdentity RoleMiningIdentity pythonsdk
python
Python
sdk
RoleMiningIdentity
BetaRoleMiningIdentity
/tools/sdk/python/beta/models/role-mining-identity
SDK
Software Development Kit
RoleMiningIdentity
BetaRoleMiningIdentity

RoleMiningIdentity

Properties

Name Type Description Notes
id str Id of the identity [optional]
name str Name of the identity [optional]
attributes map[string]str [optional]
}

Example

from sailpoint.beta.models.role_mining_identity import RoleMiningIdentity

role_mining_identity = RoleMiningIdentity(
id='',
name='',
attributes={
                    'key' : ''
                    }
)

[Back to top]