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,41 @@
---
id: v2025-managed-client-request
title: ManagedClientRequest
pagination_label: ManagedClientRequest
sidebar_label: ManagedClientRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ManagedClientRequest', 'V2025ManagedClientRequest']
slug: /tools/sdk/powershell/v2025/models/managed-client-request
tags: ['SDK', 'Software Development Kit', 'ManagedClientRequest', 'V2025ManagedClientRequest']
---
# ManagedClientRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ClusterId** | **String** | Cluster ID that the ManagedClient is linked to | [required]
**Description** | **String** | description for the ManagedClient to create | [optional]
**Name** | **String** | name for the ManagedClient to create | [optional]
**Type** | **String** | Type of the ManagedClient (VA, CCG) to create | [optional]
## Examples
- Prepare the resource
```powershell
$ManagedClientRequest = Initialize-PSSailpoint.V2025ManagedClientRequest -ClusterId aClusterId `
-Description A short description of the ManagedClient `
-Name aName `
-Type VA
```
- Convert the resource to JSON
```powershell
$ManagedClientRequest | ConvertTo-JSON
```
[[Back to top]](#)