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

1.9 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
public-identity PublicIdentity PublicIdentity PublicIdentity powershellsdk
powershell
PowerShell
sdk
PublicIdentity
PublicIdentity
/tools/sdk/powershell/v3/models/public-identity
SDK
Software Development Kit
PublicIdentity
PublicIdentity

PublicIdentity

Properties

Name Type Description Notes
Id String Identity id [optional]
Name String Human-readable display name of identity. [optional]
Alias String Alternate unique identifier for the identity. [optional]
Email String Email address of identity. [optional]
Status String The lifecycle status for the identity [optional]
IdentityState Enum [ "ACTIVE", "INACTIVE_SHORT_TERM", "INACTIVE_LONG_TERM" ] The current state of the identity, which determines how Identity Security Cloud interacts with the identity. An identity that is Active will be included identity picklists in Request Center, identity processing, and more. Identities that are Inactive will be excluded from these features. [optional]
Manager IdentityReference [optional]
Attributes []PublicIdentityAttributesInner The public identity attributes of the identity [optional]

Examples

  • Prepare the resource
$PublicIdentity = Initialize-PSSailpoint.V3PublicIdentity  -Id 2c9180857182305e0171993735622948 `
 -Name Alison Ferguso `
 -Alias alison.ferguso `
 -Email alison.ferguso@acme-solar.com `
 -Status Active `
 -IdentityState ACTIVE `
 -Manager null `
 -Attributes null
  • Convert the resource to JSON
$PublicIdentity | ConvertTo-JSON

[Back to top]