Skip to main content

UserApp

Properties

NameTypeDescriptionNotes
IdStringThe user app id[optional]
CreatedSystem.DateTimeTime when the user app was created[optional]
ModifiedSystem.DateTimeTime when the user app was last modified[optional]
HasMultipleAccountsBooleanTrue if the owner has multiple accounts for the source[optional] [default to $false]
UseForPasswordManagementBooleanTrue if the source has password feature[optional] [default to $false]
ProvisionRequestEnabledBooleanTrue if the source app related to the user app is provision request enabled[optional] [default to $false]
AppCenterEnabledBooleanTrue if the source app related to the user app is shown in the app center[optional] [default to $true]
SourceAppUserAppSourceApp[optional]
SourceUserAppSource[optional]
AccountUserAppAccount[optional]
OwnerUserAppOwner[optional]

Examples

  • Prepare the resource
$UserApp = Initialize-PSSailpoint.V2024UserApp  -Id 2c91808874ff91550175097daaec161c `
-Created 2020-10-08T18:33:52.029Z `
-Modified 2020-10-08T18:33:52.029Z `
-HasMultipleAccounts false `
-UseForPasswordManagement true `
-ProvisionRequestEnabled true `
-AppCenterEnabled true `
-SourceApp null `
-Source null `
-Account null `
-Owner null
  • Convert the resource to JSON
$UserApp | ConvertTo-JSON

[Back to top]