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,39 @@
---
id: v2024-lookup-step
title: LookupStep
pagination_label: LookupStep
sidebar_label: LookupStep
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'LookupStep', 'V2024LookupStep']
slug: /tools/sdk/powershell/v2024/models/lookup-step
tags: ['SDK', 'Software Development Kit', 'LookupStep', 'V2024LookupStep']
---
# LookupStep
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ReassignedToId** | Pointer to **String** | The ID of the Identity who work is reassigned to | [optional]
**ReassignedFromId** | Pointer to **String** | The ID of the Identity who work is reassigned from | [optional]
**ReassignmentType** | Pointer to [**ReassignmentTypeEnum**](reassignment-type-enum) | | [optional]
## Examples
- Prepare the resource
```powershell
$LookupStep = Initialize-PSSailpoint.V2024LookupStep -ReassignedToId 869320b6b6f34a169b6178b1a865e66f `
-ReassignedFromId 51948a8f306a4e7a9a6f8f5d032fa59e `
-ReassignmentType null
```
- Convert the resource to JSON
```powershell
$LookupStep | ConvertTo-JSON
```
[[Back to top]](#)