Skip to main content

Dimensionattribute

A dimension attribute

Properties

NameTypeDescriptionNotes
namestrName of the attribute[optional]
display_namestrDisplay name of the attribute[optional]
derivedboolIf an attribute is derived, its value comes from the identity. Otherwise, it can be provided with access request[optional] [default to True]
}

Example

from sailpoint.roles.models.dimensionattribute import Dimensionattribute

dimensionattribute = Dimensionattribute(
name='city',
display_name='City',
derived=True
)

[Back to top]