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,53 @@
---
id: v2025-requestable-object
title: RequestableObject
pagination_label: RequestableObject
sidebar_label: RequestableObject
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RequestableObject', 'V2025RequestableObject']
slug: /tools/sdk/powershell/v2025/models/requestable-object
tags: ['SDK', 'Software Development Kit', 'RequestableObject', 'V2025RequestableObject']
---
# RequestableObject
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | Id of the requestable object itself | [optional]
**Name** | **String** | Human-readable display name of the requestable object | [optional]
**Created** | **System.DateTime** | The time when the requestable object was created | [optional]
**Modified** | **System.DateTime** | The time when the requestable object was last modified | [optional]
**Description** | **String** | Description of the requestable object. | [optional]
**Type** | [**RequestableObjectType**](requestable-object-type) | | [optional]
**RequestStatus** | [**RequestableObjectRequestStatus**](requestable-object-request-status) | | [optional]
**IdentityRequestId** | **String** | If *requestStatus* is *PENDING*, indicates the id of the associated account activity. | [optional]
**OwnerRef** | [**IdentityReferenceWithNameAndEmail**](identity-reference-with-name-and-email) | | [optional]
**RequestCommentsRequired** | **Boolean** | Whether the requester must provide comments when requesting the object. | [optional]
## Examples
- Prepare the resource
```powershell
$RequestableObject = Initialize-PSSailpoint.V2025RequestableObject -Id 2c9180835d2e5168015d32f890ca1581 `
-Name Applied Research Access `
-Created 2017-07-11T18:45:37.098Z `
-Modified 2018-06-25T20:22:28.104Z `
-Description Access to research information, lab results, and schematics. `
-Type null `
-RequestStatus null `
-IdentityRequestId null `
-OwnerRef null `
-RequestCommentsRequired false
```
- Convert the resource to JSON
```powershell
$RequestableObject | ConvertTo-JSON
```
[[Back to top]](#)