adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: data-access
title: DataAccess
pagination_label: DataAccess
sidebar_label: DataAccess
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'DataAccess', 'DataAccess']
slug: /tools/sdk/powershell/v3/models/data-access
tags: ['SDK', 'Software Development Kit', 'DataAccess', 'DataAccess']
---
# DataAccess
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Policies** | Pointer to [**[]DataAccessPoliciesInner**](data-access-policies-inner) | List of classification policies that apply to resources the entitlement \ groups has access to | [optional]
**Categories** | Pointer to [**[]DataAccessCategoriesInner**](data-access-categories-inner) | List of classification categories that apply to resources the entitlement \ groups has access to | [optional]
**ImpactScore** | Pointer to [**DataAccessImpactScore**](data-access-impact-score) | | [optional]
## Examples
- Prepare the resource
```powershell
$DataAccess = Initialize-PSSailpoint.V3DataAccess -Policies null `
-Categories null `
-ImpactScore null
```
- Convert the resource to JSON
```powershell
$DataAccess | ConvertTo-JSON
```
[[Back to top]](#)