Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/SourceSyncJob.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

985 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
source-sync-job SourceSyncJob SourceSyncJob SourceSyncJob powershellsdk
powershell
PowerShell
sdk
SourceSyncJob
/tools/sdk/powershell/beta/models/source-sync-job
SDK
Software Development Kit
SourceSyncJob

SourceSyncJob

Properties

Name Type Description Notes
Id String Job ID. [required]
Status Enum [ "QUEUED", "IN_PROGRESS", "SUCCESS", "ERROR" ] The job status. [required]
Payload SourceSyncPayload [required]

Examples

  • Prepare the resource
$SourceSyncJob = Initialize-PSSailpoint.BetaSourceSyncJob  -Id 0f11f2a4-7c94-4bf3-a2bd-742580fe3bde `
 -Status IN_PROGRESS `
 -Payload null
  • Convert the resource to JSON
$SourceSyncJob | ConvertTo-JSON

[Back to top]