Skip to main content

Peergroupmember

Properties

NameTypeDescriptionNotes
idstrA unique identifier for the peer group member.[optional]
typestrThe type of the peer group member.[optional]
peer_group_idstrThe ID of the peer group.[optional]
attributesmap[string]objectArbitrary key-value pairs, belonging to the peer group member.[optional]
}

Example

from sailpoint.iai_peer_group_strategies.models.peergroupmember import Peergroupmember

peergroupmember = Peergroupmember(
id='',
type='',
peer_group_id='',
attributes={
'key' : None
}
)

[Back to top]