adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
---
id: v2024-common-access-response
title: CommonAccessResponse
pagination_label: CommonAccessResponse
sidebar_label: CommonAccessResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CommonAccessResponse']
slug: /tools/sdk/powershell/v2024/models/common-access-response
tags: ['SDK', 'Software Development Kit', 'CommonAccessResponse']
---
# CommonAccessResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Unique ID of the common access item | [optional]
**Access** | Pointer to [**CommonAccessItemAccess**](common-access-item-access) | | [optional]
**Status** | Pointer to **String** | CONFIRMED or DENIED | [optional]
**CommonAccessType** | Pointer to **String** | | [optional]
**LastUpdated** | Pointer to **System.DateTime** | | [optional] [readonly]
**ReviewedByUser** | Pointer to **Boolean** | true if user has confirmed or denied status | [optional]
**LastReviewed** | Pointer to **System.DateTime** | | [optional] [readonly]
**CreatedByUser** | Pointer to **Boolean** | | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$CommonAccessResponse = Initialize-PSSailpoint.V2024CommonAccessResponse -Id 555ab47a-0d32-4813-906f-adf3567de6a4 `
-Access null `
-Status null `
-CommonAccessType UNSET `
-LastUpdated null `
-ReviewedByUser null `
-LastReviewed null `
-CreatedByUser false
```
- Convert the resource to JSON
```powershell
$CommonAccessResponse | ConvertTo-JSON
```
[[Back to top]](#)