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

1.4 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
v2025-sp-config-export-results SpConfigExportResults SpConfigExportResults SpConfigExportResults powershellsdk
powershell
PowerShell
sdk
SpConfigExportResults
V2025SpConfigExportResults
/tools/sdk/powershell/v2025/models/sp-config-export-results
SDK
Software Development Kit
SpConfigExportResults
V2025SpConfigExportResults

SpConfigExportResults

Properties

Name Type Description Notes
Version Int32 Current version of the export results object. [optional]
Timestamp System.DateTime Time the export was completed. [optional]
Tenant String Name of the tenant where this export originated. [optional]
Description String Optional user defined description/name for export job. [optional]
Options ExportOptions1 [optional]
Objects []ConfigObject [optional]

Examples

  • Prepare the resource
$SpConfigExportResults = Initialize-V2025SpConfigExportResults  -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]