mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
---
|
||||
id: beta-sp-config-import-job-status
|
||||
title: SpConfigImportJobStatus
|
||||
pagination_label: SpConfigImportJobStatus
|
||||
sidebar_label: SpConfigImportJobStatus
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'SpConfigImportJobStatus', 'BetaSpConfigImportJobStatus']
|
||||
slug: /tools/sdk/powershell/beta/models/sp-config-import-job-status
|
||||
tags: ['SDK', 'Software Development Kit', 'SpConfigImportJobStatus', 'BetaSpConfigImportJobStatus']
|
||||
---
|
||||
|
||||
|
||||
# SpConfigImportJobStatus
|
||||
|
||||
## 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]
|
||||
**Message** | Pointer to **String** | This message contains additional information about the overall status of the job. | [optional]
|
||||
**Completed** | Pointer to **System.DateTime** | The time the job was completed. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$SpConfigImportJobStatus = Initialize-PSSailpoint.BetaSpConfigImportJobStatus -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 `
|
||||
-Message Download import results for details. `
|
||||
-Completed 2021-05-11T22:23:16Z
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$SpConfigImportJobStatus | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user