Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/PatOwner.md
2025-01-28 13:29:29 -05:00

1.0 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
beta-pat-owner PatOwner PatOwner PatOwner powershellsdk
powershell
PowerShell
sdk
PatOwner
BetaPatOwner
/tools/sdk/powershell/beta/models/pat-owner
SDK
Software Development Kit
PatOwner
BetaPatOwner

PatOwner

Properties

Name Type Description Notes
Type Pointer to Enum [ "IDENTITY" ] Personal access token owner's DTO type. [optional]
Id Pointer to String Personal access token owner's identity ID. [optional]
Name Pointer to String Personal access token owner's human-readable display name. [optional]

Examples

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

[Back to top]