Skip to main content

Segment

Properties

NameTypeDescriptionNotes
IdStringThe segment's ID.[optional]
NameStringThe segment's business name.[optional]
CreatedSystem.DateTimeThe time when the segment is created.[optional]
ModifiedSystem.DateTimeThe time when the segment is modified.[optional]
DescriptionStringThe segment's optional description.[optional]
OwnerOwnerReferenceSegments[optional]
VisibilityCriteriaSegmentVisibilityCriteria[optional]
ActiveBooleanThis boolean indicates whether the segment is currently active. Inactive segments have no effect.[optional] [default to $false]

Examples

  • Prepare the resource
$Segment = Initialize-PSSailpoint.V3Segment  -Id 0f11f2a4-7c94-4bf3-a2bd-742580fe3bde `
-Name segment-xyz `
-Created 2020-01-01T00:00Z `
-Modified 2020-01-01T00:00Z `
-Description This segment represents xyz `
-Owner null `
-VisibilityCriteria null `
-Active true
  • Convert the resource to JSON
$Segment | ConvertTo-JSON

[Back to top]