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

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

Bound

Properties

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

Examples

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

[Back to top]