starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,33 @@
---
id: beta-non-employee-bulk-upload-status
title: NonEmployeeBulkUploadStatus
pagination_label: NonEmployeeBulkUploadStatus
sidebar_label: NonEmployeeBulkUploadStatus
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'NonEmployeeBulkUploadStatus', 'BetaNonEmployeeBulkUploadStatus']
slug: /tools/sdk/python/beta/models/non-employee-bulk-upload-status
tags: ['SDK', 'Software Development Kit', 'NonEmployeeBulkUploadStatus', 'BetaNonEmployeeBulkUploadStatus']
---
# 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]
}
## Example
```python
from sailpoint.beta.models.non_employee_bulk_upload_status import NonEmployeeBulkUploadStatus
non_employee_bulk_upload_status = NonEmployeeBulkUploadStatus(
status='PENDING'
)
```
[[Back to top]](#)