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

IdentityAccess

Properties

Name Type Description Notes
Id Pointer to String The unique ID of the referenced object. [optional]
Name Pointer to String The human readable name of the referenced object. [optional]
DisplayName Pointer to String [optional]
Type Pointer to DtoType [optional]
Description Pointer to String [optional]
Source Pointer to Reference1 [optional]
Owner Pointer to DisplayReference [optional]
Revocable Pointer to Boolean [optional]
Privileged Pointer to Boolean [optional]
Attribute Pointer to String [optional]
Value Pointer to String [optional]
Standalone Pointer to Boolean [optional]
Disabled Pointer to Boolean [optional]

Examples

  • Prepare the resource
$IdentityAccess = Initialize-PSSailpoint.V3IdentityAccess  -Id 2c91808568c529c60168cca6f90c1313 `
 -Name John Doe `
 -DisplayName John Q. Doe `
 -Type null `
 -Description null `
 -Source null `
 -Owner null `
 -Revocable null `
 -Privileged false `
 -Attribute memberOf `
 -Value CN=Buyer,OU=Groups,OU=Demo,DC=seri,DC=sailpointdemo,DC=com `
 -Standalone false `
 -Disabled null
  • Convert the resource to JSON
$IdentityAccess | ConvertTo-JSON

[Back to top]