Skip to main content

Dataownermodel

Properties

NameTypeDescriptionNotes
identity_idstrThe unique identifier (UUID) of the identity assigned as the owner of the resource.[optional]
resource_idintThe unique identifier of the resource owned by the identity.[optional]
full_pathstrThe full path to the resource within the system or application.[optional]
}

Example

from sailpoint.data_access_security.models.dataownermodel import Dataownermodel

dataownermodel = Dataownermodel(
identity_id='c1a2b3d4-e5f6-7890-abcd-1234567890ab',
resource_id=1001,
full_path='/departments/finance/shared'
)

[Back to top]