Skip to main content

SpConfigExportResults

Properties

NameTypeDescriptionNotes
VersionInt32Current version of the export results object.[optional]
TimestampSystem.DateTimeTime the export was completed.[optional]
TenantStringName of the tenant where this export originated.[optional]
DescriptionStringOptional user defined description/name for export job.[optional]
OptionsExportOptions[optional]
Objects[]ConfigObject[optional]

Examples

  • Prepare the resource
$SpConfigExportResults = Initialize-PSSailpoint.BetaSpConfigExportResults  -Version 1 `
-Timestamp 2021-05-11T22:23:16Z `
-Tenant sample-tenant `
-Description Export Job 1 Test `
-Options null `
-Objects null
  • Convert the resource to JSON
$SpConfigExportResults | ConvertTo-JSON

[Back to top]