bedrock.endpoints.decorators

This module surfaces all the decorators in their submodules for shorter imports.

Endpoint method decorators:

Endpoint class decorators:

 1"""
 2This module surfaces all the decorators in their submodules for shorter imports.
 3
 4Endpoint method decorators:
 5* [`@with_query_param`](decorators/query_params/with_query_param.html)
 6* [`@paginated`](decorators/query_params/pagination.html)
 7* [`@verify_body_key_value_pairs`](decorators/verify_body_key_value_pairs.html)
 8* [`@apply_path_param_to_body`](decorators/apply_path_param_to_body.html)
 9* [`@protected`](decorators/protected.html)
10* [`@filter_on_columns`](decorators/filter_on_columns.html)
11
12Endpoint class decorators:
13* [`@kafka_listener`](decorators/kafka_listener.html)
14"""
15
16from bedrock.endpoints.decorators.apply_path_param_to_body import apply_path_param_to_body  # pragma: unit
17from bedrock.endpoints.decorators.audit_log import audit_log  # pragma: unit
18from bedrock.endpoints.decorators.filter_on_columns import filter_on_columns  # pragma: unit
19from bedrock.endpoints.decorators.kafka_listener import kafka_listener  # pragma: unit
20from bedrock.endpoints.decorators.protected import protected  # pragma: unit
21from bedrock.endpoints.decorators.query_params.pagination import paginated  # pragma: unit
22from bedrock.endpoints.decorators.query_params.with_query_param import with_query_param  # pragma: unit
23from bedrock.endpoints.decorators.verify_body_key_value_pairs import verify_body_key_value_pairs  # pragma: unit
24from bedrock.endpoints.decorators.websocket_listener import websocket_listener  # pragma: unit