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,45 @@
---
id: outliers-contributing-feature-access-items
title: OutliersContributingFeatureAccessItems
pagination_label: OutliersContributingFeatureAccessItems
sidebar_label: OutliersContributingFeatureAccessItems
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'OutliersContributingFeatureAccessItems']
slug: /tools/sdk/powershell/v2024/models/outliers-contributing-feature-access-items
tags: ['SDK', 'Software Development Kit', 'OutliersContributingFeatureAccessItems']
---
# OutliersContributingFeatureAccessItems
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The ID of the access item | [optional]
**DisplayName** | Pointer to **String** | the display name of the access item | [optional]
**Description** | Pointer to **String** | Description of the access item. | [optional]
**AccessType** | Pointer to **Enum** [ "ENTITLEMENT", "ACCESS_PROFILE", "ROLE" ] | The type of the access item. | [optional]
**SourceName** | Pointer to **String** | the associated source name if it exists | [optional]
**ExtremelyRare** | Pointer to **Boolean** | rarest access | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$OutliersContributingFeatureAccessItems = Initialize-PSSailpoint.V2024OutliersContributingFeatureAccessItems -Id 2c938083633d259901633d2623ec0375 `
-DisplayName Applied Research Access `
-Description Access to research information, lab results, and schematics `
-AccessType ENTITLEMENT `
-SourceName appName `
-ExtremelyRare true
```
- Convert the resource to JSON
```powershell
$OutliersContributingFeatureAccessItems | ConvertTo-JSON
```
[[Back to top]](#)