Skip to main content

ManagedClientRequest

Managed Client Request

Properties

NameTypeDescriptionNotes
cluster_idstrCluster ID that the ManagedClient is linked to[required]
descriptionstrdescription for the ManagedClient to create[optional]
namestrname for the ManagedClient to create[optional]
typestrType 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]