Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ManagedClientRequest.md
2025-02-03 22:09:17 +00:00

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
v2024-managed-client-request ManagedClientRequest ManagedClientRequest ManagedClientRequest powershellsdk
powershell
PowerShell
sdk
ManagedClientRequest
V2024ManagedClientRequest
/tools/sdk/powershell/v2024/models/managed-client-request
SDK
Software Development Kit
ManagedClientRequest
V2024ManagedClientRequest

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
$ManagedClientRequest = Initialize-PSSailpoint.V2024ManagedClientRequest  -ClusterId aClusterId `
 -Description A short description of the ManagedClient `
 -Name aName `
 -Type VA
  • Convert the resource to JSON
$ManagedClientRequest | ConvertTo-JSON

[Back to top]