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

1.2 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
v2024-owner-reference OwnerReference OwnerReference OwnerReference powershellsdk
powershell
PowerShell
sdk
OwnerReference
V2024OwnerReference
/tools/sdk/powershell/v2024/models/owner-reference
SDK
Software Development Kit
OwnerReference
V2024OwnerReference

OwnerReference

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 Owner's identity ID. [optional]
Name String Owner's name. 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
$OwnerReference = Initialize-V2024OwnerReference  -Type IDENTITY `
 -Id 2c9180a46faadee4016fb4e018c20639 `
 -Name support
  • Convert the resource to JSON
$OwnerReference | ConvertTo-JSON

[Back to top]