Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/OwnerDto.md
2025-02-03 22:09:17 +00:00

903 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
beta-owner-dto OwnerDto OwnerDto OwnerDto powershellsdk
powershell
PowerShell
sdk
OwnerDto
BetaOwnerDto
/tools/sdk/powershell/beta/models/owner-dto
SDK
Software Development Kit
OwnerDto
BetaOwnerDto

OwnerDto

Properties

Name Type Description Notes
Type Enum [ "IDENTITY" ] Owner's DTO type. [optional]
Id String Owner's identity ID. [optional]
Name String Owner's name. [optional]

Examples

  • Prepare the resource
$OwnerDto = Initialize-PSSailpoint.BetaOwnerDto  -Type IDENTITY `
 -Id 2c9180a46faadee4016fb4e018c20639 `
 -Name Support
  • Convert the resource to JSON
$OwnerDto | ConvertTo-JSON

[Back to top]