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.v2024.models.peer_group_member import PeerGroupMember

peer_group_member = PeerGroupMember(
id='',
type='',
peer_group_id='',
attributes={
'key' : None
}
)

[Back to top]