Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/Bound.md
2025-01-28 13:29:29 -05:00

845 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
v2024-bound Bound Bound Bound powershellsdk
powershell
PowerShell
sdk
Bound
V2024Bound
/tools/sdk/powershell/v2024/models/bound
SDK
Software Development Kit
Bound
V2024Bound

Bound

Properties

Name Type Description Notes
Value String The value of the range's endpoint. [required]
Inclusive Pointer to Boolean Indicates if the endpoint is included in the range. [optional] [default to $false]

Examples

  • Prepare the resource
$Bound = Initialize-PSSailpoint.V2024Bound  -Value 1 `
 -Inclusive false
  • Convert the resource to JSON
$Bound | ConvertTo-JSON

[Back to top]