adding v3 docs back in

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:41:57 -05:00
parent f36c734ca4
commit 7194b934e8
658 changed files with 47533 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
---
id: access-profile-role
title: AccessProfileRole
pagination_label: AccessProfileRole
sidebar_label: AccessProfileRole
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessProfileRole']
slug: /tools/sdk/powershell/v3/models/access-profile-role
tags: ['SDK', 'Software Development Kit', 'AccessProfileRole']
---
# AccessProfileRole
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The unique ID of the referenced object. | [optional]
**Name** | Pointer to **String** | The human readable name of the referenced object. | [optional]
**DisplayName** | Pointer to **String** | | [optional]
**Type** | Pointer to [**DtoType**](dto-type) | | [optional]
**Description** | Pointer to **String** | | [optional]
**Owner** | Pointer to [**DisplayReference**](display-reference) | | [optional]
**Disabled** | Pointer to **Boolean** | | [optional]
**Revocable** | Pointer to **Boolean** | | [optional]
## Examples
- Prepare the resource
```powershell
$AccessProfileRole = Initialize-PSSailpoint.V3AccessProfileRole -Id 2c91808568c529c60168cca6f90c1313 `
-Name John Doe `
-DisplayName John Q. Doe `
-Type null `
-Description null `
-Owner null `
-Disabled null `
-Revocable null
```
- Convert the resource to JSON
```powershell
$AccessProfileRole | ConvertTo-JSON
```
[[Back to top]](#)