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

1.3 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
owner-reference-segments OwnerReferenceSegments OwnerReferenceSegments OwnerReferenceSegments powershellsdk
powershell
PowerShell
sdk
OwnerReferenceSegments
OwnerReferenceSegments
/tools/sdk/powershell/v3/models/owner-reference-segments
SDK
Software Development Kit
OwnerReferenceSegments
OwnerReferenceSegments

OwnerReferenceSegments

Properties

Name Type Description Notes
Type Enum [ "IDENTITY" ] Owner type. This field must be either left null or set to 'IDENTITY' on input, otherwise a 400 Bad Request error will result. [optional]
Id String Identity id [optional]
Name String Human-readable display name of the owner. It may be left null or omitted in a POST or PATCH. If set, it must match the current value of the owner's display name, otherwise a 400 Bad Request error will result. [optional]

Examples

  • Prepare the resource
$OwnerReferenceSegments = Initialize-OwnerReferenceSegments  -Type IDENTITY `
 -Id 2c9180a46faadee4016fb4e018c20639 `
 -Name support
  • Convert the resource to JSON
$OwnerReferenceSegments | ConvertTo-JSON

[Back to top]