Skip to main content

SpConfigJob

Properties

NameTypeDescriptionNotes
JobIdStringUnique id assigned to this job.[required]
StatusEnum [ "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "CANCELLED", "FAILED" ]Status of the job.[required]
TypeEnum [ "EXPORT", "IMPORT" ]Type of the job, either export or import.[required]
ExpirationSystem.DateTimeThe time until which the artifacts will be available for download.[required]
CreatedSystem.DateTimeThe time the job was started.[required]
ModifiedSystem.DateTimeThe time of the last update to the job.[required]

Examples

  • Prepare the resource
$SpConfigJob = Initialize-PSSailpoint.V2024SpConfigJob  -JobId 3469b87d-48ca-439a-868f-2160001da8c1 `
-Status COMPLETE `
-Type IMPORT `
-Expiration 2021-05-11T22:23:16Z `
-Created 2021-05-11T22:23:16Z `
-Modified 2021-05-11T22:23:16Z
  • Convert the resource to JSON
$SpConfigJob | ConvertTo-JSON

[Back to top]