mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
---
|
||||
id: managed-client-request
|
||||
title: ManagedClientRequest
|
||||
pagination_label: ManagedClientRequest
|
||||
sidebar_label: ManagedClientRequest
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'ManagedClientRequest', 'ManagedClientRequest']
|
||||
slug: /tools/sdk/python/v3/models/managed-client-request
|
||||
tags: ['SDK', 'Software Development Kit', 'ManagedClientRequest', 'ManagedClientRequest']
|
||||
---
|
||||
|
||||
# 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
|
||||
|
||||
```python
|
||||
from sailpoint.v3.models.managed_client_request import ManagedClientRequest
|
||||
|
||||
managed_client_request = ManagedClientRequest(
|
||||
cluster_id='aClusterId',
|
||||
description='A short description of the ManagedClient',
|
||||
name='aName',
|
||||
type='VA'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user