mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: v2024-account-request
|
||||
title: AccountRequest
|
||||
pagination_label: AccountRequest
|
||||
sidebar_label: AccountRequest
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'AccountRequest', 'V2024AccountRequest']
|
||||
slug: /tools/sdk/powershell/v2024/models/account-request
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountRequest', 'V2024AccountRequest']
|
||||
---
|
||||
|
||||
|
||||
# AccountRequest
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccountId** | Pointer to **String** | Unique ID of the account | [optional]
|
||||
**AttributeRequests** | Pointer to [**[]AttributeRequest**](attribute-request) | | [optional]
|
||||
**Op** | Pointer to **String** | The operation that was performed | [optional]
|
||||
**ProvisioningTarget** | Pointer to [**AccountSource**](account-source) | | [optional]
|
||||
**Result** | Pointer to [**AccountRequestResult**](account-request-result) | | [optional]
|
||||
**Source** | Pointer to [**AccountSource**](account-source) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$AccountRequest = Initialize-PSSailpoint.V2024AccountRequest -AccountId John.Doe `
|
||||
-AttributeRequests null `
|
||||
-Op Modify `
|
||||
-ProvisioningTarget null `
|
||||
-Result null `
|
||||
-Source null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$AccountRequest | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user