add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
---
id: v2025-non-employee-bulk-upload-status
title: NonEmployeeBulkUploadStatus
pagination_label: NonEmployeeBulkUploadStatus
sidebar_label: NonEmployeeBulkUploadStatus
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'NonEmployeeBulkUploadStatus', 'V2025NonEmployeeBulkUploadStatus']
slug: /tools/sdk/powershell/v2025/models/non-employee-bulk-upload-status
tags: ['SDK', 'Software Development Kit', 'NonEmployeeBulkUploadStatus', 'V2025NonEmployeeBulkUploadStatus']
---
# NonEmployeeBulkUploadStatus
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Status** | **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. null means job has been submitted to the source. | [optional]
## Examples
- Prepare the resource
```powershell
$NonEmployeeBulkUploadStatus = Initialize-PSSailpoint.V2025NonEmployeeBulkUploadStatus -Status PENDING
```
- Convert the resource to JSON
```powershell
$NonEmployeeBulkUploadStatus | ConvertTo-JSON
```
[[Back to top]](#)