adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
---
id: beta-sp-config-export-results
title: SpConfigExportResults
pagination_label: SpConfigExportResults
sidebar_label: SpConfigExportResults
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SpConfigExportResults', 'BetaSpConfigExportResults']
slug: /tools/sdk/powershell/beta/models/sp-config-export-results
tags: ['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**](export-options) | | [optional]
**Objects** | Pointer to [**[]ConfigObject**](config-object) | | [optional]
## Examples
- Prepare the resource
```powershell
$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
```powershell
$SpConfigExportResults | ConvertTo-JSON
```
[[Back to top]](#)