add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
---
id: v2025-base-entitlement
title: BaseEntitlement
pagination_label: BaseEntitlement
sidebar_label: BaseEntitlement
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'BaseEntitlement', 'V2025BaseEntitlement']
slug: /tools/sdk/powershell/v2025/models/base-entitlement
tags: ['SDK', 'Software Development Kit', 'BaseEntitlement', 'V2025BaseEntitlement']
---
# BaseEntitlement
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**HasPermissions** | **Boolean** | Indicates whether the entitlement has permissions. | [optional] [default to $false]
**Description** | **String** | Entitlement's description. | [optional]
**Attribute** | **String** | Entitlement attribute's name. | [optional]
**Value** | **String** | Entitlement's value. | [optional]
**Schema** | **String** | Entitlement's schema. | [optional]
**Privileged** | **Boolean** | Indicates whether the entitlement is privileged. | [optional] [default to $false]
**Id** | **String** | Entitlement's ID. | [optional]
**Name** | **String** | Entitlement's name. | [optional]
## Examples
- Prepare the resource
```powershell
$BaseEntitlement = Initialize-PSSailpoint.V2025BaseEntitlement -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]](#)