Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/BaseAccessAllOfOwner.md
2025-01-28 13:29:29 -05: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
base-access-all-of-owner BaseAccessAllOfOwner BaseAccessAllOfOwner BaseAccessAllOfOwner powershellsdk
powershell
PowerShell
sdk
BaseAccessAllOfOwner
BaseAccessAllOfOwner
/tools/sdk/powershell/v3/models/base-access-all-of-owner
SDK
Software Development Kit
BaseAccessAllOfOwner
BaseAccessAllOfOwner

BaseAccessAllOfOwner

Properties

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

Examples

  • Prepare the resource
$BaseAccessAllOfOwner = Initialize-PSSailpoint.V3BaseAccessAllOfOwner  -Type IDENTITY `
 -Id 2c9180a46faadee4016fb4e018c20639 `
 -Name Support `
 -Email cloud-support@sailpoint.com
  • Convert the resource to JSON
$BaseAccessAllOfOwner | ConvertTo-JSON

[Back to top]