Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/RoleTargetDto.md
2025-03-10 11:34:32 -04:00

1.4 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
v2024-role-target-dto RoleTargetDto RoleTargetDto RoleTargetDto pythonsdk
python
Python
sdk
RoleTargetDto
V2024RoleTargetDto
/tools/sdk/python/v2024/models/role-target-dto
SDK
Software Development Kit
RoleTargetDto
V2024RoleTargetDto

RoleTargetDto

Properties

Name Type Description Notes
source BaseReferenceDto [optional]
account_info AccountInfoDto [optional]
role_name str Specific role name for this target if using multiple accounts [optional]
}

Example

from sailpoint.v2024.models.role_target_dto import RoleTargetDto

role_target_dto = RoleTargetDto(
source=sailpoint.v2024.models.base_reference_dto.BaseReferenceDto(
                    type = 'IDENTITY', 
                    id = '2c91808568c529c60168cca6f90c1313', 
                    name = 'William Wilson', ),
account_info=sailpoint.v2024.models.account_info_dto.AccountInfoDto(
                    native_identity = 'CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com', 
                    display_name = 'Abby.Smith', 
                    uuid = '{ad9fc391-246d-40af-b248-b6556a2b7c01}', ),
role_name='Marketing'
)

[Back to top]