Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/SpConfigExportJob.md
2025-05-07 14:37:48 +00:00

1.7 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
beta-sp-config-export-job SpConfigExportJob SpConfigExportJob SpConfigExportJob powershellsdk
powershell
PowerShell
sdk
SpConfigExportJob
BetaSpConfigExportJob
/tools/sdk/powershell/beta/models/sp-config-export-job
SDK
Software Development Kit
SpConfigExportJob
BetaSpConfigExportJob

SpConfigExportJob

Properties

Name Type Description Notes
JobId String Unique id assigned to this job. [required]
Status Enum [ "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "CANCELLED", "FAILED" ] Status of the job. [required]
Type Enum [ "EXPORT", "IMPORT" ] Type of the job, either export or import. [required]
Expiration System.DateTime The time until which the artifacts will be available for download. [required]
Created System.DateTime The time the job was started. [required]
Modified System.DateTime The time of the last update to the job. [required]
Description String Optional user defined description/name for export job. [optional]

Examples

  • Prepare the resource
$SpConfigExportJob = Initialize-BetaSpConfigExportJob  -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 `
 -Description ETS configuration objects from Acme-Solar sandbox
  • Convert the resource to JSON
$SpConfigExportJob | ConvertTo-JSON

[Back to top]