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,57 @@
---
id: v2025-reviewable-entitlement-account
title: ReviewableEntitlementAccount
pagination_label: ReviewableEntitlementAccount
sidebar_label: ReviewableEntitlementAccount
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ReviewableEntitlementAccount', 'V2025ReviewableEntitlementAccount']
slug: /tools/sdk/powershell/v2025/models/reviewable-entitlement-account
tags: ['SDK', 'Software Development Kit', 'ReviewableEntitlementAccount', 'V2025ReviewableEntitlementAccount']
---
# ReviewableEntitlementAccount
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**NativeIdentity** | **String** | The native identity for this account | [optional]
**Disabled** | **Boolean** | Indicates whether this account is currently disabled | [optional] [default to $false]
**Locked** | **Boolean** | Indicates whether this account is currently locked | [optional] [default to $false]
**Type** | [**DtoType**](dto-type) | | [optional]
**Id** | **String** | The id associated with the account | [optional]
**Name** | **String** | The account name | [optional]
**Created** | **System.DateTime** | When the account was created | [optional]
**Modified** | **System.DateTime** | When the account was last modified | [optional]
**ActivityInsights** | [**ActivityInsights**](activity-insights) | | [optional]
**Description** | **String** | Information about the account | [optional]
**GovernanceGroupId** | **String** | The id associated with the machine Account Governance Group | [optional]
**Owner** | [**ReviewableEntitlementAccountOwner**](reviewable-entitlement-account-owner) | | [optional]
## Examples
- Prepare the resource
```powershell
$ReviewableEntitlementAccount = Initialize-PSSailpoint.V2025ReviewableEntitlementAccount -NativeIdentity CN=Alison Ferguso `
-Disabled false `
-Locked false `
-Type null `
-Id 2c9180857182305e0171993737eb29e6 `
-Name Alison Ferguso `
-Created 2020-04-20T20:11:05.067Z `
-Modified 2020-05-20T18:57:16.987Z `
-ActivityInsights null `
-Description Account for Read/write to the company database `
-GovernanceGroupId 2c9180857182305e0171993737eb29e6 `
-Owner null
```
- Convert the resource to JSON
```powershell
$ReviewableEntitlementAccount | ConvertTo-JSON
```
[[Back to top]](#)