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

1.5 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-identity-ownership-association-details IdentityOwnershipAssociationDetails IdentityOwnershipAssociationDetails IdentityOwnershipAssociationDetails pythonsdk
python
Python
sdk
IdentityOwnershipAssociationDetails
V2024IdentityOwnershipAssociationDetails
/tools/sdk/python/v2024/models/identity-ownership-association-details
SDK
Software Development Kit
IdentityOwnershipAssociationDetails
V2024IdentityOwnershipAssociationDetails

IdentityOwnershipAssociationDetails

Properties

Name Type Description Notes
association_details []IdentityOwnershipAssociationDetailsAssociationDetailsInner list of all the resource associations for the identity [optional]
}

Example

from sailpoint.v2024.models.identity_ownership_association_details import IdentityOwnershipAssociationDetails

identity_ownership_association_details = IdentityOwnershipAssociationDetails(
association_details=[
                    sailpoint.v2024.models.identity_ownership_association_details_association_details_inner.IdentityOwnershipAssociationDetails_associationDetails_inner(
                        association_type = 'ROLE_OWNER', 
                        entities = {id=b660a232f05b4e04812ca974b3011e0f, name=Gaston.800ddf9640a, type=ROLE}, )
                    ]
)

[Back to top]