Skip to main content

Entitlementconnectionbulkupdateresultitem

Properties

NameTypeDescriptionNotes
connection_idstrConnection ID processed in this row.[optional]
typestrRequested or resulting connection type for the row.[optional]
statusintItem-level result status code.[optional]
descriptionstrItem-level result message.[optional]
}

Example

from sailpoint.entitlement_connections.models.entitlementconnectionbulkupdateresultitem import Entitlementconnectionbulkupdateresultitem

entitlementconnectionbulkupdateresultitem = Entitlementconnectionbulkupdateresultitem(
connection_id='d532fa5cb15748e2873c6a01e5923ec4',
type='JIT',
status=201,
description='success'
)

[Back to top]