adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,43 @@
---
id: non-employee-bulk-upload-job
title: NonEmployeeBulkUploadJob
pagination_label: NonEmployeeBulkUploadJob
sidebar_label: NonEmployeeBulkUploadJob
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'NonEmployeeBulkUploadJob']
slug: /tools/sdk/powershell/v2024/models/non-employee-bulk-upload-job
tags: ['SDK', 'Software Development Kit', 'NonEmployeeBulkUploadJob']
---
# NonEmployeeBulkUploadJob
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The bulk upload job's ID. (UUID) | [optional]
**SourceId** | Pointer to **String** | The ID of the source to bulk-upload non-employees to. (UUID) | [optional]
**Created** | Pointer to **System.DateTime** | The date-time the job was submitted. | [optional]
**Modified** | Pointer to **System.DateTime** | The date-time that the job was last updated. | [optional]
**Status** | Pointer to **Enum** [ "PENDING", "IN_PROGRESS", "COMPLETED", "ERROR" ] | Returns the following values indicating the progress or result of the bulk upload job. ""PENDING"" means the job is queued and waiting to be processed. ""IN_PROGRESS"" means the job is currently being processed. ""COMPLETED"" means the job has been completed without any errors. ""ERROR"" means the job failed to process with errors. | [optional]
## Examples
- Prepare the resource
```powershell
$NonEmployeeBulkUploadJob = Initialize-PSSailpoint.V2024NonEmployeeBulkUploadJob -Id 2c91808568c529c60168cca6f90cffff `
-SourceId 2c91808568c529c60168cca6f90c1313 `
-Created 2019-08-23T18:52:59.162Z `
-Modified 2019-08-23T18:52:59.162Z `
-Status PENDING
```
- Convert the resource to JSON
```powershell
$NonEmployeeBulkUploadJob | ConvertTo-JSON
```
[[Back to top]](#)