Authentication

Catalyst Cloud Scale Authentication features in Python SDK helps you perform user authentication specific operations, such as adding a new user, fetching details of the current user or all users, resetting the password of an existing user account, and deleting a user.

Get a Component Instance

A component instance is an object that can be used to access the pre-defined configurations specific to a particular component. You can create a component instance for Authentication to execute various user management actions, and this will not fire a server-side call.

You can create a new authentication_serviceinstance as shown below :

    
copy
#Get Authentication component instance authentication_service = app.authentication()

This component instance will be used as shown in the various Authentication sections of the Python SDK documentation.

RELATED LINKS

Authentication