Skip to main content

Resourcemodel

Properties

NameTypeDescriptionNotes
idintThe unique identifier for the resource.[optional]
namestrThe display name or label for the resource.[optional]
full_pathstrThe full path to the resource within the system or application.[optional]
application_idintThe unique identifier of the application to which this resource belongs.[optional]
typeBusinessservicetype[optional]
owners[]strA list of UUIDs representing the owners of the resource.[optional]
}

Example

from sailpoint.data_access_security.models.resourcemodel import Resourcemodel

resourcemodel = Resourcemodel(
id=1001,
name='Finance Shared Folder',
full_path='/departments/finance/shared',
application_id=2001,
type=6,
owners=["c1a2b3d4-e5f6-7890-abcd-1234567890ab","d4e5f6a7-b8c9-0123-4567-89abcdef0123"]
)

[Back to top]