adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: create-uploaded-configuration-request
title: CreateUploadedConfigurationRequest
pagination_label: CreateUploadedConfigurationRequest
sidebar_label: CreateUploadedConfigurationRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CreateUploadedConfigurationRequest', 'CreateUploadedConfigurationRequest']
slug: /tools/sdk/powershell/v3/models/create-uploaded-configuration-request
tags: ['SDK', 'Software Development Kit', 'CreateUploadedConfigurationRequest', 'CreateUploadedConfigurationRequest']
---
# CreateUploadedConfigurationRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarData** | **System.IO.FileInfo** | JSON file containing the objects to be imported. | [required]
**Name** | **String** | Name that will be assigned to the uploaded configuration file. | [required]
## Examples
- Prepare the resource
```powershell
$CreateUploadedConfigurationRequest = Initialize-PSSailpoint.V3CreateUploadedConfigurationRequest -VarData null `
-Name null
```
- Convert the resource to JSON
```powershell
$CreateUploadedConfigurationRequest | ConvertTo-JSON
```
[[Back to top]](#)