mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
update to doc files
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: sp-config-export-results
|
||||
title: SpConfigExportResults
|
||||
pagination_label: SpConfigExportResults
|
||||
sidebar_label: SpConfigExportResults
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'SpConfigExportResults']
|
||||
slug: /tools/sdk/powershell/beta/models/sp-config-export-results
|
||||
tags: ['SDK', 'Software Development Kit', 'SpConfigExportResults']
|
||||
---
|
||||
|
||||
|
||||
# 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]](#)
|
||||
|
||||
Reference in New Issue
Block a user