add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
---
id: v2025-account-request
title: AccountRequest
pagination_label: AccountRequest
sidebar_label: AccountRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccountRequest', 'V2025AccountRequest']
slug: /tools/sdk/powershell/v2025/models/account-request
tags: ['SDK', 'Software Development Kit', 'AccountRequest', 'V2025AccountRequest']
---
# AccountRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AccountId** | **String** | Unique ID of the account | [optional]
**AttributeRequests** | [**[]AttributeRequest**](attribute-request) | | [optional]
**Op** | **String** | The operation that was performed | [optional]
**ProvisioningTarget** | [**AccountSource**](account-source) | | [optional]
**Result** | [**AccountRequestResult**](account-request-result) | | [optional]
**Source** | [**AccountSource**](account-source) | | [optional]
## Examples
- Prepare the resource
```powershell
$AccountRequest = Initialize-PSSailpoint.V2025AccountRequest -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]](#)