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.managed_clients.models.managedclientrequest import Managedclientrequest

managedclientrequest = Managedclientrequest(
cluster_id='aClusterId',
description='A short description of the ManagedClient',
name='aName',
type='VA'
)

[Back to top]