Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/IdentityCreatedIdentity.md
2025-04-01 09:23:12 -04:00

1.1 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
v2025-identity-created-identity IdentityCreatedIdentity IdentityCreatedIdentity IdentityCreatedIdentity powershellsdk
powershell
PowerShell
sdk
IdentityCreatedIdentity
V2025IdentityCreatedIdentity
/tools/sdk/powershell/v2025/models/identity-created-identity
SDK
Software Development Kit
IdentityCreatedIdentity
V2025IdentityCreatedIdentity

IdentityCreatedIdentity

Properties

Name Type Description Notes
Type Enum [ "IDENTITY" ] Created identity's DTO type. [required]
Id String Created identity ID. [required]
Name String Created identity's display name. [required]

Examples

  • Prepare the resource
$IdentityCreatedIdentity = Initialize-PSSailpoint.V2025IdentityCreatedIdentity  -Type IDENTITY `
 -Id 2c7180a46faadee4016fb4e018c20642 `
 -Name Michael Michaels
  • Convert the resource to JSON
$IdentityCreatedIdentity | ConvertTo-JSON

[Back to top]