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

875 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
selector Selector Selector Selector powershellsdk
powershell
PowerShell
sdk
Selector
Selector
/tools/sdk/powershell/v3/models/selector
SDK
Software Development Kit
Selector
Selector

Selector

Properties

Name Type Description Notes
Type SelectorType [required]
Values []String The selected values. [required]
Interval Int32 The selected interval for RANGE selectors. [optional]

Examples

  • Prepare the resource
$Selector = Initialize-Selector  -Type null `
 -Values [MON, WED] `
 -Interval 3
  • Convert the resource to JSON
$Selector | ConvertTo-JSON

[Back to top]