Authentication

Catalyst Cloud Scale Authentication features in Python SDK help 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 predefined configurations specific to a particular component. You can create a component instance for Authentication to execute various user management actions, which will not fire a server-side call.

The app reference used in the code below is the Python object returned as a response during SDK initialization. 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.

Last Updated 2023-12-18 16:20:08 +0530 +0530

RELATED LINKS

Authentication