removing part of model docs from v2024

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:52:12 -05:00
parent cb679653ff
commit fb685431b3
639 changed files with 0 additions and 26446 deletions

View File

@@ -1,41 +0,0 @@
---
id: v2024-requestable-object-reference
title: RequestableObjectReference
pagination_label: RequestableObjectReference
sidebar_label: RequestableObjectReference
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RequestableObjectReference']
slug: /tools/sdk/powershell/v2024/models/requestable-object-reference
tags: ['SDK', 'Software Development Kit', 'RequestableObjectReference']
---
# RequestableObjectReference
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Id of the object. | [optional]
**Name** | Pointer to **String** | Name of the object. | [optional]
**Description** | Pointer to **String** | Description of the object. | [optional]
**Type** | Pointer to **Enum** [ "ACCESS_PROFILE", "ROLE", "ENTITLEMENT" ] | Type of the object. | [optional]
## Examples
- Prepare the resource
```powershell
$RequestableObjectReference = Initialize-PSSailpoint.V2024RequestableObjectReference -Id 2c9180835d2e5168015d32f890ca1581 `
-Name Applied Research Access `
-Description Access to research information, lab results, and schematics `
-Type ROLE
```
- Convert the resource to JSON
```powershell
$RequestableObjectReference | ConvertTo-JSON
```
[[Back to top]](#)