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,55 @@
---
id: v2025-requestable-object
title: RequestableObject
pagination_label: RequestableObject
sidebar_label: RequestableObject
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RequestableObject', 'V2025RequestableObject']
slug: /tools/sdk/python/v2025/models/requestable-object
tags: ['SDK', 'Software Development Kit', 'RequestableObject', 'V2025RequestableObject']
---
# RequestableObject
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Id of the requestable object itself | [optional]
**name** | **str** | Human-readable display name of the requestable object | [optional]
**created** | **datetime** | The time when the requestable object was created | [optional]
**modified** | **datetime** | The time when the requestable object was last modified | [optional]
**description** | **str** | Description of the requestable object. | [optional]
**type** | [**RequestableObjectType**](requestable-object-type) | | [optional]
**request_status** | [**RequestableObjectRequestStatus**](requestable-object-request-status) | | [optional]
**identity_request_id** | **str** | If *requestStatus* is *PENDING*, indicates the id of the associated account activity. | [optional]
**owner_ref** | [**IdentityReferenceWithNameAndEmail**](identity-reference-with-name-and-email) | | [optional]
**request_comments_required** | **bool** | Whether the requester must provide comments when requesting the object. | [optional]
}
## Example
```python
from sailpoint.v2025.models.requestable_object import RequestableObject
requestable_object = RequestableObject(
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='ACCESS_PROFILE',
request_status=,
identity_request_id='',
owner_ref=sailpoint.v2025.models.identity_reference_with_name_and_email.IdentityReferenceWithNameAndEmail(
type = 'IDENTITY',
id = '5168015d32f890ca15812c9180835d2e',
name = 'Alison Ferguso',
email = 'alison.ferguso@identitysoon.com', ),
request_comments_required=False
)
```
[[Back to top]](#)