mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.2 KiB
1.2 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-managed-client-request | ManagedClientRequest | ManagedClientRequest | ManagedClientRequest | pythonsdk |
|
/tools/sdk/python/v2025/models/managed-client-request |
|
ManagedClientRequest
Managed Client Request
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| cluster_id | str | Cluster ID that the ManagedClient is linked to | [required] |
| description | str | description for the ManagedClient to create | [optional] |
| name | str | name for the ManagedClient to create | [optional] |
| type | str | Type of the ManagedClient (VA, CCG) to create | [optional] |
| } |
Example
from sailpoint.v2025.models.managed_client_request import ManagedClientRequest
managed_client_request = ManagedClientRequest(
cluster_id='aClusterId',
description='A short description of the ManagedClient',
name='aName',
type='VA'
)