Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/ManagedClientRequest.md
2025-02-20 12:59:19 -05:00

1.1 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
managed-client-request ManagedClientRequest ManagedClientRequest ManagedClientRequest pythonsdk
python
Python
sdk
ManagedClientRequest
ManagedClientRequest
/tools/sdk/python/v3/models/managed-client-request
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

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]