Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/SpConfigExportResults.md
2025-01-28 13:29:29 -05:00

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

SpConfigExportResults

Properties

Name Type Description Notes
Version Pointer to Int32 Current version of the export results object. [optional]
Timestamp Pointer to System.DateTime Time the export was completed. [optional]
Tenant Pointer to String Name of the tenant where this export originated. [optional]
Description Pointer to String Optional user defined description/name for export job. [optional]
Options Pointer to ExportOptions [optional]
Objects Pointer to []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]