Skip to main content

Segmentmembership

Contains the segments and types that an identity is associated with

Properties

NameTypeDescriptionNotes
segments[]strList of segment ids that the identity is associated with.[optional]
all_access_scopes[]ScopetypeThey type of scopes that are assigned to the identity.[optional]
refresh_bydatetimeDate time string that lets you know when the membership data is going to be refreshed.[optional]
}

Example

from sailpoint.data_segmentation.models.segmentmembership import Segmentmembership

segmentmembership = Segmentmembership(
segments=[
'0f11f2a4-7c94-4bf3-a2bd-742580fe3bde'
],
all_access_scopes=[
'ALL'
],
refresh_by='2020-01-01T00:00Z'
)

[Back to top]