Skip to main content

Assignresourceownerrequest

Properties

NameTypeDescriptionNotes
app_idintThe unique identifier of the application containing the resource.[optional]
full_pathstrThe full path to the resource within the application (e.g., file path or object path).[optional]
identity_idstrThe unique identifier (UUID) of the identity to be assigned as the resource owner.[optional]
}

Example

from sailpoint.data_access_security.models.assignresourceownerrequest import Assignresourceownerrequest

assignresourceownerrequest = Assignresourceownerrequest(
app_id=12345,
full_path='/shared/hr/documents/employee-records.pdf',
identity_id='d290f1ee-6c54-4b01-90e6-d701748f0851'
)

[Back to top]