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,41 @@
---
id: v2025-access-requested
title: AccessRequested
pagination_label: AccessRequested
sidebar_label: AccessRequested
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessRequested', 'V2025AccessRequested']
slug: /tools/sdk/powershell/v2025/models/access-requested
tags: ['SDK', 'Software Development Kit', 'AccessRequested', 'V2025AccessRequested']
---
# AccessRequested
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AccessRequest** | [**AccessRequestResponse1**](access-request-response1) | | [optional]
**IdentityId** | **String** | the identity id | [optional]
**EventType** | **String** | the event type | [optional]
**Dt** | **String** | the date of event | [optional]
## Examples
- Prepare the resource
```powershell
$AccessRequested = Initialize-PSSailpoint.V2025AccessRequested -AccessRequest null `
-IdentityId 8a80828f643d484f01643e14202e206f `
-EventType AccessRequested `
-Dt 2019-03-08T22:37:33.901Z
```
- Convert the resource to JSON
```powershell
$AccessRequested | ConvertTo-JSON
```
[[Back to top]](#)