Skip to main content

Identityattribute2

Properties

NameTypeDescriptionNotes
namestrIdentity attribute's technical name.[required]
display_namestrIdentity attribute's business-friendly name.[optional]
standardboolIndicates whether the attribute is 'standard' or 'default'.[optional] [default to False]
typestrIdentity attribute's type.[optional]
multiboolIndicates whether the identity attribute is multi-valued.[optional] [default to False]
searchableboolIndicates whether the identity attribute is searchable.[optional] [default to False]
systemboolIndicates whether the identity attribute is 'system', meaning that it doesn't have a source and isn't configurable.[optional] [default to False]
sources[]Source2Identity attribute's list of sources - this specifies how the rule's value is derived.[optional]
}

Example

from sailpoint.identity_attributes.models.identityattribute2 import Identityattribute2

identityattribute2 = Identityattribute2(
name='costCenter',
display_name='Cost Center',
standard=False,
type='string',
multi=False,
searchable=False,
system=False,
sources=[
sailpoint.identity_attributes.models.source_2.source-2(
type = 'rule',
properties = {"ruleType":"IdentityAttribute","ruleName":"Cloud Promote Identity Attribute"}, )
]
)

[Back to top]