test with just powershell beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:18:21 -05:00
parent 42436403b2
commit f36c734ca4
1824 changed files with 1 additions and 130758 deletions

View File

@@ -1,49 +0,0 @@
---
id: base-entitlement
title: BaseEntitlement
pagination_label: BaseEntitlement
sidebar_label: BaseEntitlement
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'BaseEntitlement']
slug: /tools/sdk/powershell/v3/models/base-entitlement
tags: ['SDK', 'Software Development Kit', 'BaseEntitlement']
---
# BaseEntitlement
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**HasPermissions** | Pointer to **Boolean** | Indicates whether the entitlement has permissions. | [optional] [default to $false]
**Description** | Pointer to **String** | Entitlement's description. | [optional]
**Attribute** | Pointer to **String** | Entitlement attribute's name. | [optional]
**Value** | Pointer to **String** | Entitlement's value. | [optional]
**Schema** | Pointer to **String** | Entitlement's schema. | [optional]
**Privileged** | Pointer to **Boolean** | Indicates whether the entitlement is privileged. | [optional] [default to $false]
**Id** | Pointer to **String** | Entitlement's ID. | [optional]
**Name** | Pointer to **String** | Entitlement's name. | [optional]
## Examples
- Prepare the resource
```powershell
$BaseEntitlement = Initialize-PSSailpoint.V3BaseEntitlement -HasPermissions false `
-Description Cloud engineering `
-Attribute memberOf `
-Value CN=Cloud Engineering,DC=sailpoint,DC=COM `
-Schema group `
-Privileged false `
-Id 2c918084575812550157589064f33b89 `
-Name CN=Cloud Engineering,DC=sailpoint,DC=COM
```
- Convert the resource to JSON
```powershell
$BaseEntitlement | ConvertTo-JSON
```
[[Back to top]](#)