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,41 @@
---
id: v2024-original-request
title: OriginalRequest
pagination_label: OriginalRequest
sidebar_label: OriginalRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'OriginalRequest', 'V2024OriginalRequest']
slug: /tools/sdk/powershell/v2024/models/original-request
tags: ['SDK', 'Software Development Kit', 'OriginalRequest', 'V2024OriginalRequest']
---
# OriginalRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AccountId** | Pointer to **String** | Account ID. | [optional]
**AttributeRequests** | Pointer to [**[]AttributeRequest**](attribute-request) | Attribute changes requested for account. | [optional]
**Op** | Pointer to **String** | Operation used. | [optional]
**Source** | Pointer to [**AccountSource**](account-source) | | [optional]
## Examples
- Prepare the resource
```powershell
$OriginalRequest = Initialize-PSSailpoint.V2024OriginalRequest -AccountId CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com `
-AttributeRequests null `
-Op add `
-Source null
```
- Convert the resource to JSON
```powershell
$OriginalRequest | ConvertTo-JSON
```
[[Back to top]](#)