Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/UserApp.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
v2024-user-app UserApp UserApp UserApp powershellsdk
powershell
PowerShell
sdk
UserApp
V2024UserApp
/tools/sdk/powershell/v2024/models/user-app
SDK
Software Development Kit
UserApp
V2024UserApp

UserApp

Properties

Name Type Description Notes
Id String The user app id [optional]
Created System.DateTime Time when the user app was created [optional]
Modified System.DateTime Time when the user app was last modified [optional]
HasMultipleAccounts Boolean True if the owner has multiple accounts for the source [optional] [default to $false]
UseForPasswordManagement Boolean True if the source has password feature [optional] [default to $false]
ProvisionRequestEnabled Boolean True if the source app related to the user app is provision request enabled [optional] [default to $false]
AppCenterEnabled Boolean True if the source app related to the user app is shown in the app center [optional] [default to $true]
SourceApp UserAppSourceApp [optional]
Source UserAppSource [optional]
Account UserAppAccount [optional]
Owner UserAppOwner [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]