Skip to main content

ManagedClient

Managed Client

Properties

NameTypeDescriptionNotes
idstrManagedClient ID[optional] [readonly]
alert_keystrManagedClient alert key[optional] [readonly]
api_gateway_base_urlstrManagedClient gateway base url[optional] [readonly]
cc_idintPrevious CC ID to be used in data migration. (This field will be deleted after CC migration!)[optional]
client_idstrThe client ID used in API management[required]
cluster_idstrCluster ID that the ManagedClient is linked to[required]
cookbookstrVA cookbook[optional] [readonly]
descriptionstrManagedClient description[required]
ip_addressstrThe public IP address of the ManagedClient[optional] [readonly]
last_seendatetimeWhen the ManagedClient was last seen by the server[optional] [readonly]
namestrManagedClient name[optional]
since_last_seenstrMilliseconds since the ManagedClient has polled the server[optional] [readonly]
statusManagedClientStatusEnumStatus of the ManagedClient[optional] [readonly]
typestrType of the ManagedClient (VA, CCG)[required]
va_download_urlstrManagedClient VA download URL[optional] [readonly]
va_versionstrVersion that the ManagedClient's VA is running[optional] [readonly]
secretstrClient's apiKey[optional]
}

Example

from sailpoint.beta.models.managed_client import ManagedClient

managed_client = ManagedClient(
id='aClientId',
alert_key='anAlertKey',
api_gateway_base_url='https://denali-xxx.api.cloud.sailpoint.com',
cc_id=2248,
client_id='aClientApiId',
cluster_id='aClusterId',
cookbook='va-cookbook-info',
description='A short description of the ManagedClient',
ip_address='123.456.78.90',
last_seen='2020-01-01T00:00Z',
name='aName',
since_last_seen='15000',
status='NORMAL',
type='VA',
va_download_url='aUrl',
va_version='va-megapod-useast1-610-1621372012',
secret='ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381'
)

[Back to top]