Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/Segment.md
2025-05-07 14:37:48 +00:00

1.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-segment Segment Segment Segment powershellsdk
powershell
PowerShell
sdk
Segment
V2024Segment
/tools/sdk/powershell/v2024/models/segment
SDK
Software Development Kit
Segment
V2024Segment

Segment

Properties

Name Type Description Notes
Id String The segment's ID. [optional]
Name String The segment's business name. [optional]
Created System.DateTime The time when the segment is created. [optional]
Modified System.DateTime The time when the segment is modified. [optional]
Description String The segment's optional description. [optional]
Owner OwnerReferenceSegments [optional]
VisibilityCriteria SegmentVisibilityCriteria [optional]
Active Boolean This boolean indicates whether the segment is currently active. Inactive segments have no effect. [optional] [default to $false]

Examples

  • Prepare the resource
$Segment = Initialize-V2024Segment  -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]