Skip to main content

Intelprivilegedaccessitemwire

Properties

NameTypeDescriptionNotes
privilegedboolTrue when this item is classified as privileged access for the identity.[required]
idstrIdentifier of the privileged access item.[required]
typestrType of privileged access object.[required]
display_namestrDisplay label for the privileged access item in administrative experiences.[optional]
namestrTechnical name of the privileged access item.[optional]
sourceIntelprivilegedaccessitemwireSource[optional]
attributestrSource attribute name that carries the privileged value when applicable.[optional]
valuestrPrivileged value on the source attribute when applicable.[optional]
}

Example

from sailpoint.intelligence.models.intelprivilegedaccessitemwire import Intelprivilegedaccessitemwire

intelprivilegedaccessitemwire = Intelprivilegedaccessitemwire(
privileged=True,
id='ent-1',
type='entitlement',
display_name='Example_Admin_Access',
name='Example_Admin_Access',
source=sailpoint.intelligence.models.intelprivilegedaccessitemwire_source.intelprivilegedaccessitemwire_source(
name = 'Example HR Source',
id = 'src-2', ),
attribute='EXAMPLE_PERMISSION_GROUPS',
value='Example_Admin_Access'
)

[Back to top]