adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,41 @@
---
id: access-summary
title: AccessSummary
pagination_label: AccessSummary
sidebar_label: AccessSummary
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessSummary']
slug: /tools/sdk/powershell/v2024/models/access-summary
tags: ['SDK', 'Software Development Kit', 'AccessSummary']
---
# AccessSummary
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Access** | Pointer to [**AccessSummaryAccess**](access-summary-access) | | [optional]
**Entitlement** | Pointer to [**ReviewableEntitlement**](reviewable-entitlement) | | [optional]
**AccessProfile** | Pointer to [**ReviewableAccessProfile**](reviewable-access-profile) | | [optional]
**Role** | Pointer to [**ReviewableRole**](reviewable-role) | | [optional]
## Examples
- Prepare the resource
```powershell
$AccessSummary = Initialize-PSSailpoint.V2024AccessSummary -Access null `
-Entitlement null `
-AccessProfile null `
-Role null
```
- Convert the resource to JSON
```powershell
$AccessSummary | ConvertTo-JSON
```
[[Back to top]](#)