Skip to main content

NonEmployeeSource

Properties

NameTypeDescriptionNotes
IdStringNon-Employee source id.[optional]
SourceIdStringSource Id associated with this non-employee source.[optional]
NameStringSource name associated with this non-employee source.[optional]
DescriptionStringSource description associated with this non-employee source.[optional]
Approvers[]NonEmployeeIdentityReferenceWithIdList of approvers[optional]
AccountManagers[]NonEmployeeIdentityReferenceWithIdList of account managers[optional]
ModifiedSystem.DateTimeWhen the request was last modified.[optional]
CreatedSystem.DateTimeWhen the request was created.[optional]

Examples

  • Prepare the resource
$NonEmployeeSource = Initialize-PSSailpoint.V3NonEmployeeSource  -Id a0303682-5e4a-44f7-bdc2-6ce6112549c1 `
-SourceId 2c91808568c529c60168cca6f90c1313 `
-Name Retail `
-Description Source description `
-Approvers null `
-AccountManagers null `
-Modified 2019-08-23T18:52:59.162Z `
-Created 2019-08-23T18:40:35.772Z
  • Convert the resource to JSON
$NonEmployeeSource | ConvertTo-JSON

[Back to top]