airflow.providers.fab.auth_manager.api_fastapi.services.users

Classes

FABAuthManagerUsers

Service layer for FAB Auth Manager user operations.

Module Contents

class airflow.providers.fab.auth_manager.api_fastapi.services.users.FABAuthManagerUsers[source]

Service layer for FAB Auth Manager user operations.

classmethod get_user(username)[source]

Get a user by username.

classmethod get_users(*, order_by, limit, offset)[source]

Get users with pagination and ordering.

classmethod create_user(body)[source]
classmethod update_user(username, body, update_mask=None)[source]

Update an existing user.

classmethod delete_user(username)[source]

Delete a user by username.

Was this entry helpful?