removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,49 +0,0 @@
---
id: sp-config-export-job-status
title: SpConfigExportJobStatus
pagination_label: SpConfigExportJobStatus
sidebar_label: SpConfigExportJobStatus
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SpConfigExportJobStatus']
slug: /tools/sdk/powershell/beta/models/sp-config-export-job-status
tags: ['SDK', 'Software Development Kit', 'SpConfigExportJobStatus']
---
# SpConfigExportJobStatus
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**JobId** | **String** | Unique id assigned to this job. | [required]
**Status** | **Enum** [ "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "CANCELLED", "FAILED" ] | Status of the job. | [required]
**Type** | **Enum** [ "EXPORT", "IMPORT" ] | Type of the job, either export or import. | [required]
**Expiration** | **System.DateTime** | The time until which the artifacts will be available for download. | [required]
**Created** | **System.DateTime** | The time the job was started. | [required]
**Modified** | **System.DateTime** | The time of the last update to the job. | [required]
**Description** | Pointer to **String** | Optional user defined description/name for export job. | [optional]
**Completed** | Pointer to **System.DateTime** | The time the job was completed. | [optional]
## Examples
- Prepare the resource
```powershell
$SpConfigExportJobStatus = Initialize-PSSailpoint.BetaSpConfigExportJobStatus -JobId 3469b87d-48ca-439a-868f-2160001da8c1 `
-Status COMPLETE `
-Type IMPORT `
-Expiration 2021-05-11T22:23:16Z `
-Created 2021-05-11T22:23:16Z `
-Modified 2021-05-11T22:23:16Z `
-Description ETS configuration objects from Acme-Solar sandbox `
-Completed 2021-05-11T22:23:16Z
```
- Convert the resource to JSON
```powershell
$SpConfigExportJobStatus | ConvertTo-JSON
```
[[Back to top]](#)