Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/IdentityCreatedIdentity.md
2025-01-28 13:29:29 -05: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
v2024-identity-created-identity IdentityCreatedIdentity IdentityCreatedIdentity IdentityCreatedIdentity powershellsdk
powershell
PowerShell
sdk
IdentityCreatedIdentity
V2024IdentityCreatedIdentity
/tools/sdk/powershell/v2024/models/identity-created-identity
SDK
Software Development Kit
IdentityCreatedIdentity
V2024IdentityCreatedIdentity

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.V2024IdentityCreatedIdentity  -Type IDENTITY `
 -Id 2c7180a46faadee4016fb4e018c20642 `
 -Name Michael Michaels
  • Convert the resource to JSON
$IdentityCreatedIdentity | ConvertTo-JSON

[Back to top]