Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/Bound.md
2025-04-01 09:23:12 -04:00

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

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-PSSailpoint.V2025Bound  -Value 1 `
 -Inclusive false
  • Convert the resource to JSON
$Bound | ConvertTo-JSON

[Back to top]