Module aws_lambda_powertools.event_handler.openapi.params

Functions

def analyze_param(*, param_name: str, annotation: Any, value: Any, is_path_param: bool, is_response_param: bool) ‑> Optional[pydantic.fields.ModelField]

Analyze a parameter annotation and value to determine the type and default value of the parameter.

Parameters

param_name : str
The name of the parameter
annotation
The annotation of the parameter
value
The value of the parameter
is_path_param
Whether the parameter is a path parameter
is_response_param
Whether the parameter is the return annotation

Returns

Optional[ModelField]
The type annotation and the Pydantic field representing the parameter
def create_response_field(name: str, type_: Type[Any], default: Optional[Any] = PydanticUndefined, required: Union[bool, pydantic.fields.UndefinedType] = PydanticUndefined, model_config: Type[pydantic.config.BaseConfig] = pydantic.config.BaseConfig, field_info: Optional[pydantic.fields.FieldInfo] = None, alias: Optional[str] = None, mode: Literal['validation', 'serialization'] = 'validation') ‑> pydantic.fields.ModelField

Create a new response field. Raises if type_ is invalid.

def get_field_info_and_type_annotation(annotation, value, is_path_param: bool) ‑> Tuple[Optional[pydantic.fields.FieldInfo], Any]

Get the FieldInfo and type annotation from an annotation and value.

def get_field_info_annotated_type(annotation, value, is_path_param: bool) ‑> Tuple[Optional[pydantic.fields.FieldInfo], Any]

Get the FieldInfo and type annotation from an Annotated type.

def get_field_info_response_type(annotation, value) ‑> Tuple[Optional[pydantic.fields.FieldInfo], Any]
def get_flat_dependant(dependant: Dependant, visited: Optional[List[Optional[Callable[..., Any]]]] = None) ‑> Dependant

Flatten a recursive Dependant model structure.

This function recursively concatenates the parameter fields of a Dependant model and its dependencies into a flat Dependant structure. This is useful for scenarios like parameter validation where the nested structure is not relevant.

Parameters

dependant : Dependant
The dependant model to flatten
skip_repeats : bool
If True, child Dependents already visited will be skipped to avoid duplicates
visited : List[CacheKey], optional
Keeps track of visited Dependents to avoid infinite recursion. Defaults to empty list.

Returns

Dependant
The flattened Dependant model

Classes

class Body (default: Any = PydanticUndefined, *, default_factory: Optional[Callable[[], Any]] = PydanticUndefined, annotation: Optional[Any] = None, embed: bool = False, media_type: str = 'application/json', alias: Optional[str] = None, alias_priority: Optional[int] = PydanticUndefined, validation_alias: Optional[str] = None, serialization_alias: Optional[str] = None, title: Optional[str] = None, description: Optional[str] = None, gt: Optional[float] = None, ge: Optional[float] = None, lt: Optional[float] = None, le: Optional[float] = None, min_length: Optional[int] = None, max_length: Optional[int] = None, pattern: Optional[str] = None, discriminator: Optional[str] = None, strict: Optional[bool] = PydanticUndefined, multiple_of: Optional[float] = PydanticUndefined, allow_inf_nan: Optional[bool] = PydanticUndefined, max_digits: Optional[int] = PydanticUndefined, decimal_places: Optional[int] = PydanticUndefined, examples: Optional[List[Any]] = None, deprecated: Optional[bool] = None, include_in_schema: bool = True, json_schema_extra: Optional[Dict[str, Any]] = None, **extra: Any)

A class used internally to represent a body parameter in a path operation.

Expand source code
class Body(FieldInfo):
    """
    A class used internally to represent a body parameter in a path operation.
    """

    def __init__(
        self,
        default: Any = Undefined,
        *,
        default_factory: Union[Callable[[], Any], None] = _Unset,
        annotation: Optional[Any] = None,
        embed: bool = False,
        media_type: str = "application/json",
        alias: Optional[str] = None,
        alias_priority: Union[int, None] = _Unset,
        # MAINTENANCE: update when deprecating Pydantic v1, import these types
        # str | AliasPath | AliasChoices | None
        validation_alias: Union[str, None] = None,
        serialization_alias: Union[str, None] = None,
        title: Optional[str] = None,
        description: Optional[str] = None,
        gt: Optional[float] = None,
        ge: Optional[float] = None,
        lt: Optional[float] = None,
        le: Optional[float] = None,
        min_length: Optional[int] = None,
        max_length: Optional[int] = None,
        pattern: Optional[str] = None,
        discriminator: Union[str, None] = None,
        strict: Union[bool, None] = _Unset,
        multiple_of: Union[float, None] = _Unset,
        allow_inf_nan: Union[bool, None] = _Unset,
        max_digits: Union[int, None] = _Unset,
        decimal_places: Union[int, None] = _Unset,
        examples: Optional[List[Any]] = None,
        deprecated: Optional[bool] = None,
        include_in_schema: bool = True,
        json_schema_extra: Union[Dict[str, Any], None] = None,
        **extra: Any,
    ):
        self.embed = embed
        self.media_type = media_type
        self.deprecated = deprecated
        self.include_in_schema = include_in_schema
        kwargs = dict(
            default=default,
            default_factory=default_factory,
            alias=alias,
            title=title,
            description=description,
            gt=gt,
            ge=ge,
            lt=lt,
            le=le,
            min_length=min_length,
            max_length=max_length,
            discriminator=discriminator,
            multiple_of=multiple_of,
            allow_nan=allow_inf_nan,
            max_digits=max_digits,
            decimal_places=decimal_places,
            **extra,
        )
        if examples is not None:
            kwargs["examples"] = examples
        current_json_schema_extra = json_schema_extra or extra
        if PYDANTIC_V2:
            kwargs.update(
                {
                    "annotation": annotation,
                    "alias_priority": alias_priority,
                    "validation_alias": validation_alias,
                    "serialization_alias": serialization_alias,
                    "strict": strict,
                    "json_schema_extra": current_json_schema_extra,
                    "pattern": pattern,
                },
            )
        else:
            kwargs["regex"] = pattern
            kwargs.update(**current_json_schema_extra)

        use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset}

        super().__init__(**use_kwargs)

    def __repr__(self) -> str:
        return f"{self.__class__.__name__}({self.default})"

Ancestors

  • pydantic.fields.FieldInfo
  • pydantic.utils.Representation

Subclasses

  • aws_lambda_powertools.event_handler.openapi.params._Form
class Dependant (*, path_params: Optional[List[pydantic.fields.ModelField]] = None, query_params: Optional[List[pydantic.fields.ModelField]] = None, header_params: Optional[List[pydantic.fields.ModelField]] = None, cookie_params: Optional[List[pydantic.fields.ModelField]] = None, body_params: Optional[List[pydantic.fields.ModelField]] = None, return_param: Optional[pydantic.fields.ModelField] = None, response_extra_models: Optional[List[pydantic.fields.ModelField]] = None, name: Optional[str] = None, call: Optional[Callable[..., Any]] = None, request_param_name: Optional[str] = None, websocket_param_name: Optional[str] = None, http_connection_param_name: Optional[str] = None, response_param_name: Optional[str] = None, background_tasks_param_name: Optional[str] = None, path: Optional[str] = None)

A class used internally to represent a dependency between path operation decorators and the path operation function.

Expand source code
class Dependant:
    """
    A class used internally to represent a dependency between path operation decorators and the path operation function.
    """

    def __init__(
        self,
        *,
        path_params: Optional[List[ModelField]] = None,
        query_params: Optional[List[ModelField]] = None,
        header_params: Optional[List[ModelField]] = None,
        cookie_params: Optional[List[ModelField]] = None,
        body_params: Optional[List[ModelField]] = None,
        return_param: Optional[ModelField] = None,
        response_extra_models: Optional[List[ModelField]] = None,
        name: Optional[str] = None,
        call: Optional[Callable[..., Any]] = None,
        request_param_name: Optional[str] = None,
        websocket_param_name: Optional[str] = None,
        http_connection_param_name: Optional[str] = None,
        response_param_name: Optional[str] = None,
        background_tasks_param_name: Optional[str] = None,
        path: Optional[str] = None,
    ) -> None:
        self.path_params = path_params or []
        self.query_params = query_params or []
        self.header_params = header_params or []
        self.cookie_params = cookie_params or []
        self.body_params = body_params or []
        self.return_param = return_param or None
        self.response_extra_models = response_extra_models or []
        self.request_param_name = request_param_name
        self.websocket_param_name = websocket_param_name
        self.http_connection_param_name = http_connection_param_name
        self.response_param_name = response_param_name
        self.background_tasks_param_name = background_tasks_param_name
        self.name = name
        self.call = call
        # Store the path to be able to re-generate a dependable from it in overrides
        self.path = path
        # Save the cache key at creation to optimize performance
        self.cache_key: CacheKey = self.call
class Header (default: Any = PydanticUndefined, *, default_factory: Optional[Callable[[], Any]] = PydanticUndefined, annotation: Optional[Any] = None, alias: Optional[str] = None, alias_priority: Optional[int] = PydanticUndefined, validation_alias: Optional[str] = None, serialization_alias: Optional[str] = None, convert_underscores: bool = True, title: Optional[str] = None, description: Optional[str] = None, gt: Optional[float] = None, ge: Optional[float] = None, lt: Optional[float] = None, le: Optional[float] = None, min_length: Optional[int] = None, max_length: Optional[int] = None, pattern: Optional[str] = None, discriminator: Optional[str] = None, strict: Optional[bool] = PydanticUndefined, multiple_of: Optional[float] = PydanticUndefined, allow_inf_nan: Optional[bool] = PydanticUndefined, max_digits: Optional[int] = PydanticUndefined, decimal_places: Optional[int] = PydanticUndefined, examples: Optional[List[Any]] = None, deprecated: Optional[bool] = None, include_in_schema: bool = True, json_schema_extra: Optional[Dict[str, Any]] = None, **extra: Any)

A class used internally to represent a header parameter in a path operation.

Constructs a new Query param.

Parameters

default : Any
The default value of the parameter
default_factory : Callable[[], Any], optional
Callable that will be called when a default value is needed for this field
annotation : Any, optional
The type annotation of the parameter
alias : str, optional
The public name of the field
alias_priority : int, optional
Priority of the alias. This affects whether an alias generator is used
validation_alias : str | AliasPath | AliasChoices | None, optional
Alias to be used for validation only
serialization_alias : str | AliasPath | AliasChoices | None, optional
Alias to be used for serialization only
convert_underscores : bool
If true convert "_" to "-" See RFC: https://www.rfc-editor.org/rfc/rfc9110.html#name-field-name-registry
title : str, optional
The title of the parameter
description : str, optional
The description of the parameter
gt : float, optional
Only applies to numbers, required the field to be "greater than"
ge : float, optional
Only applies to numbers, required the field to be "greater than or equal"
lt : float, optional
Only applies to numbers, required the field to be "less than"
le : float, optional
Only applies to numbers, required the field to be "less than or equal"
min_length : int, optional
Only applies to strings, required the field to have a minimum length
max_length : int, optional
Only applies to strings, required the field to have a maximum length
pattern : str, optional
Only applies to strings, requires the field match against a regular expression pattern string
discriminator : str, optional
Parameter field name for discriminating the type in a tagged union
strict : bool, optional
Enables Pydantic's strict mode for the field
multiple_of : float, optional
Only applies to numbers, requires the field to be a multiple of the given value
allow_inf_nan : bool, optional
Only applies to numbers, requires the field to allow infinity and NaN values
max_digits : int, optional
Only applies to Decimals, requires the field to have a maxmium number of digits within the decimal.
decimal_places : int, optional
Only applies to Decimals, requires the field to have at most a number of decimal places
examples : List[Any], optional
A list of examples for the parameter
deprecated : bool, optional
If True, the parameter will be marked as deprecated
include_in_schema : bool, optional
If False, the parameter will be excluded from the generated OpenAPI schema
json_schema_extra : Dict[str, Any], optional
Extra values to include in the generated OpenAPI schema
Expand source code
class Header(Param):
    """
    A class used internally to represent a header parameter in a path operation.
    """

    in_ = ParamTypes.header

    def __init__(
        self,
        default: Any = Undefined,
        *,
        default_factory: Union[Callable[[], Any], None] = _Unset,
        annotation: Optional[Any] = None,
        alias: Optional[str] = None,
        alias_priority: Union[int, None] = _Unset,
        # MAINTENANCE: update when deprecating Pydantic v1, import these types
        # str | AliasPath | AliasChoices | None
        validation_alias: Union[str, None] = None,
        serialization_alias: Union[str, None] = None,
        convert_underscores: bool = True,
        title: Optional[str] = None,
        description: Optional[str] = None,
        gt: Optional[float] = None,
        ge: Optional[float] = None,
        lt: Optional[float] = None,
        le: Optional[float] = None,
        min_length: Optional[int] = None,
        max_length: Optional[int] = None,
        pattern: Optional[str] = None,
        discriminator: Union[str, None] = None,
        strict: Union[bool, None] = _Unset,
        multiple_of: Union[float, None] = _Unset,
        allow_inf_nan: Union[bool, None] = _Unset,
        max_digits: Union[int, None] = _Unset,
        decimal_places: Union[int, None] = _Unset,
        examples: Optional[List[Any]] = None,
        deprecated: Optional[bool] = None,
        include_in_schema: bool = True,
        json_schema_extra: Union[Dict[str, Any], None] = None,
        **extra: Any,
    ):
        """
        Constructs a new Query param.

        Parameters
        ----------
        default: Any
            The default value of the parameter
        default_factory: Callable[[], Any], optional
            Callable that will be called when a default value is needed for this field
        annotation: Any, optional
            The type annotation of the parameter
        alias: str, optional
            The public name of the field
        alias_priority: int, optional
            Priority of the alias. This affects whether an alias generator is used
        validation_alias: str | AliasPath | AliasChoices | None, optional
            Alias to be used for validation only
        serialization_alias: str | AliasPath | AliasChoices | None, optional
            Alias to be used for serialization only
        convert_underscores: bool
            If true convert "_" to "-"
            See RFC: https://www.rfc-editor.org/rfc/rfc9110.html#name-field-name-registry
        title: str, optional
            The title of the parameter
        description: str, optional
            The description of the parameter
        gt: float, optional
            Only applies to numbers, required the field to be "greater than"
        ge: float, optional
            Only applies to numbers, required the field to be "greater than or equal"
        lt: float, optional
            Only applies to numbers, required the field to be "less than"
        le: float, optional
            Only applies to numbers, required the field to be "less than or equal"
        min_length: int, optional
            Only applies to strings, required the field to have a minimum length
        max_length: int, optional
            Only applies to strings, required the field to have a maximum length
        pattern: str, optional
            Only applies to strings, requires the field match against a regular expression pattern string
        discriminator: str, optional
            Parameter field name for discriminating the type in a tagged union
        strict: bool, optional
            Enables Pydantic's strict mode for the field
        multiple_of: float, optional
            Only applies to numbers, requires the field to be a multiple of the given value
        allow_inf_nan: bool, optional
            Only applies to numbers, requires the field to allow infinity and NaN values
        max_digits: int, optional
            Only applies to Decimals, requires the field to have a maxmium number of digits within the decimal.
        decimal_places: int, optional
            Only applies to Decimals, requires the field to have at most a number of decimal places
        examples: List[Any], optional
            A list of examples for the parameter
        deprecated: bool, optional
            If `True`, the parameter will be marked as deprecated
        include_in_schema: bool, optional
            If `False`, the parameter will be excluded from the generated OpenAPI schema
        json_schema_extra: Dict[str, Any], optional
            Extra values to include in the generated OpenAPI schema
        """
        self.convert_underscores = convert_underscores
        self._alias = alias

        super().__init__(
            default=default,
            default_factory=default_factory,
            annotation=annotation,
            alias=self._alias,
            alias_priority=alias_priority,
            validation_alias=validation_alias,
            serialization_alias=serialization_alias,
            title=title,
            description=description,
            gt=gt,
            ge=ge,
            lt=lt,
            le=le,
            min_length=min_length,
            max_length=max_length,
            pattern=pattern,
            discriminator=discriminator,
            strict=strict,
            multiple_of=multiple_of,
            allow_inf_nan=allow_inf_nan,
            max_digits=max_digits,
            decimal_places=decimal_places,
            deprecated=deprecated,
            examples=examples,
            include_in_schema=include_in_schema,
            json_schema_extra=json_schema_extra,
            **extra,
        )

    @property
    def alias(self):
        return self._alias

    @alias.setter
    def alias(self, value: Optional[str] = None):
        if value is not None:
            # Headers are case-insensitive according to RFC 7540 (HTTP/2), so we lower the parameter name
            # This ensures that customers can access headers with any casing, as per the RFC guidelines.
            # Reference: https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2
            self._alias = value.lower()

Ancestors

  • Param
  • pydantic.fields.FieldInfo
  • pydantic.utils.Representation

Class variables

var in_ParamTypes

Instance variables

prop alias
Expand source code
@property
def alias(self):
    return self._alias
class Param (default: Any = PydanticUndefined, *, default_factory: Optional[Callable[[], Any]] = PydanticUndefined, annotation: Optional[Any] = None, alias: Optional[str] = None, alias_priority: Optional[int] = PydanticUndefined, validation_alias: Optional[str] = None, serialization_alias: Optional[str] = None, title: Optional[str] = None, description: Optional[str] = None, gt: Optional[float] = None, ge: Optional[float] = None, lt: Optional[float] = None, le: Optional[float] = None, min_length: Optional[int] = None, max_length: Optional[int] = None, pattern: Optional[str] = None, discriminator: Optional[str] = None, strict: Optional[bool] = PydanticUndefined, multiple_of: Optional[float] = PydanticUndefined, allow_inf_nan: Optional[bool] = PydanticUndefined, max_digits: Optional[int] = PydanticUndefined, decimal_places: Optional[int] = PydanticUndefined, examples: Optional[List[Any]] = None, deprecated: Optional[bool] = None, include_in_schema: bool = True, json_schema_extra: Optional[Dict[str, Any]] = None, **extra: Any)

A class used internally to represent a parameter in a path operation.

Constructs a new Param.

Parameters

default : Any
The default value of the parameter
default_factory : Callable[[], Any], optional
Callable that will be called when a default value is needed for this field
annotation : Any, optional
The type annotation of the parameter
alias : str, optional
The public name of the field
alias_priority : int, optional
Priority of the alias. This affects whether an alias generator is used
validation_alias : str | AliasPath | AliasChoices | None, optional
Alias to be used for validation only
serialization_alias : str | AliasPath | AliasChoices | None, optional
Alias to be used for serialization only
title : str, optional
The title of the parameter
description : str, optional
The description of the parameter
gt : float, optional
Only applies to numbers, required the field to be "greater than"
ge : float, optional
Only applies to numbers, required the field to be "greater than or equal"
lt : float, optional
Only applies to numbers, required the field to be "less than"
le : float, optional
Only applies to numbers, required the field to be "less than or equal"
min_length : int, optional
Only applies to strings, required the field to have a minimum length
max_length : int, optional
Only applies to strings, required the field to have a maximum length
pattern : str, optional
Only applies to strings, requires the field match against a regular expression pattern string
discriminator : str, optional
Parameter field name for discriminating the type in a tagged union
strict : bool, optional
Enables Pydantic's strict mode for the field
multiple_of : float, optional
Only applies to numbers, requires the field to be a multiple of the given value
allow_inf_nan : bool, optional
Only applies to numbers, requires the field to allow infinity and NaN values
max_digits : int, optional
Only applies to Decimals, requires the field to have a maxmium number of digits within the decimal.
decimal_places : int, optional
Only applies to Decimals, requires the field to have at most a number of decimal places
examples : List[Any], optional
A list of examples for the parameter
deprecated : bool, optional
If True, the parameter will be marked as deprecated
include_in_schema : bool, optional
If False, the parameter will be excluded from the generated OpenAPI schema
json_schema_extra : Dict[str, Any], optional
Extra values to include in the generated OpenAPI schema
Expand source code
class Param(FieldInfo):
    """
    A class used internally to represent a parameter in a path operation.
    """

    in_: ParamTypes

    def __init__(
        self,
        default: Any = Undefined,
        *,
        default_factory: Union[Callable[[], Any], None] = _Unset,
        annotation: Optional[Any] = None,
        alias: Optional[str] = None,
        alias_priority: Union[int, None] = _Unset,
        # MAINTENANCE: update when deprecating Pydantic v1, import these types
        # MAINTENANCE: validation_alias: str | AliasPath | AliasChoices | None
        validation_alias: Union[str, None] = None,
        serialization_alias: Union[str, None] = None,
        title: Optional[str] = None,
        description: Optional[str] = None,
        gt: Optional[float] = None,
        ge: Optional[float] = None,
        lt: Optional[float] = None,
        le: Optional[float] = None,
        min_length: Optional[int] = None,
        max_length: Optional[int] = None,
        pattern: Optional[str] = None,
        discriminator: Union[str, None] = None,
        strict: Union[bool, None] = _Unset,
        multiple_of: Union[float, None] = _Unset,
        allow_inf_nan: Union[bool, None] = _Unset,
        max_digits: Union[int, None] = _Unset,
        decimal_places: Union[int, None] = _Unset,
        examples: Optional[List[Any]] = None,
        deprecated: Optional[bool] = None,
        include_in_schema: bool = True,
        json_schema_extra: Union[Dict[str, Any], None] = None,
        **extra: Any,
    ):
        """
        Constructs a new Param.

        Parameters
        ----------
        default: Any
            The default value of the parameter
        default_factory: Callable[[], Any], optional
            Callable that will be called when a default value is needed for this field
        annotation: Any, optional
            The type annotation of the parameter
        alias: str, optional
            The public name of the field
        alias_priority: int, optional
            Priority of the alias. This affects whether an alias generator is used
        validation_alias: str | AliasPath | AliasChoices | None, optional
            Alias to be used for validation only
        serialization_alias: str | AliasPath | AliasChoices | None, optional
            Alias to be used for serialization only
        title: str, optional
            The title of the parameter
        description: str, optional
            The description of the parameter
        gt: float, optional
            Only applies to numbers, required the field to be "greater than"
        ge: float, optional
            Only applies to numbers, required the field to be "greater than or equal"
        lt: float, optional
            Only applies to numbers, required the field to be "less than"
        le: float, optional
            Only applies to numbers, required the field to be "less than or equal"
        min_length: int, optional
            Only applies to strings, required the field to have a minimum length
        max_length: int, optional
            Only applies to strings, required the field to have a maximum length
        pattern: str, optional
            Only applies to strings, requires the field match against a regular expression pattern string
        discriminator: str, optional
            Parameter field name for discriminating the type in a tagged union
        strict: bool, optional
            Enables Pydantic's strict mode for the field
        multiple_of: float, optional
            Only applies to numbers, requires the field to be a multiple of the given value
        allow_inf_nan: bool, optional
            Only applies to numbers, requires the field to allow infinity and NaN values
        max_digits: int, optional
            Only applies to Decimals, requires the field to have a maxmium number of digits within the decimal.
        decimal_places: int, optional
            Only applies to Decimals, requires the field to have at most a number of decimal places
        examples: List[Any], optional
            A list of examples for the parameter
        deprecated: bool, optional
            If `True`, the parameter will be marked as deprecated
        include_in_schema: bool, optional
            If `False`, the parameter will be excluded from the generated OpenAPI schema
        json_schema_extra: Dict[str, Any], optional
            Extra values to include in the generated OpenAPI schema
        """
        self.deprecated = deprecated
        self.include_in_schema = include_in_schema

        kwargs = dict(
            default=default,
            default_factory=default_factory,
            alias=alias,
            title=title,
            description=description,
            gt=gt,
            ge=ge,
            lt=lt,
            le=le,
            min_length=min_length,
            max_length=max_length,
            discriminator=discriminator,
            multiple_of=multiple_of,
            allow_nan=allow_inf_nan,
            max_digits=max_digits,
            decimal_places=decimal_places,
            **extra,
        )
        if examples is not None:
            kwargs["examples"] = examples

        current_json_schema_extra = json_schema_extra or extra
        if PYDANTIC_V2:
            kwargs.update(
                {
                    "annotation": annotation,
                    "alias_priority": alias_priority,
                    "validation_alias": validation_alias,
                    "serialization_alias": serialization_alias,
                    "strict": strict,
                    "json_schema_extra": current_json_schema_extra,
                    "pattern": pattern,
                },
            )
        else:
            kwargs["regex"] = pattern
            kwargs.update(**current_json_schema_extra)

        use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset}

        super().__init__(**use_kwargs)

    def __repr__(self) -> str:
        return f"{self.__class__.__name__}({self.default})"

Ancestors

  • pydantic.fields.FieldInfo
  • pydantic.utils.Representation

Subclasses

Class variables

var in_ParamTypes
class ParamTypes (*args, **kwds)

Create a collection of name/value pairs.

Example enumeration:

>>> class Color(Enum):
...     RED = 1
...     BLUE = 2
...     GREEN = 3

Access them by:

  • attribute access:

Color.RED

  • value lookup:

Color(1)

  • name lookup:

Color['RED']

Enumerations can be iterated over, and know how many members they have:

>>> len(Color)
3
>>> list(Color)
[<Color.RED: 1>, <Color.BLUE: 2>, <Color.GREEN: 3>]

Methods can be added to enumerations, and members can have their own attributes – see the documentation for details.

Expand source code
class ParamTypes(Enum):
    query = "query"
    header = "header"
    path = "path"
    cookie = "cookie"

Ancestors

  • enum.Enum

Class variables

var cookie
var header
var path
var query
class Path (default: Any = Ellipsis, *, default_factory: Optional[Callable[[], Any]] = PydanticUndefined, annotation: Optional[Any] = None, alias: Optional[str] = None, alias_priority: Optional[int] = PydanticUndefined, validation_alias: Optional[str] = None, serialization_alias: Optional[str] = None, title: Optional[str] = None, description: Optional[str] = None, gt: Optional[float] = None, ge: Optional[float] = None, lt: Optional[float] = None, le: Optional[float] = None, min_length: Optional[int] = None, max_length: Optional[int] = None, pattern: Optional[str] = None, discriminator: Optional[str] = None, strict: Optional[bool] = PydanticUndefined, multiple_of: Optional[float] = PydanticUndefined, allow_inf_nan: Optional[bool] = PydanticUndefined, max_digits: Optional[int] = PydanticUndefined, decimal_places: Optional[int] = PydanticUndefined, examples: Optional[List[Any]] = None, deprecated: Optional[bool] = None, include_in_schema: bool = True, json_schema_extra: Optional[Dict[str, Any]] = None, **extra: Any)

A class used internally to represent a path parameter in a path operation.

Constructs a new Path param.

Parameters

default : Any
The default value of the parameter
default_factory : Callable[[], Any], optional
Callable that will be called when a default value is needed for this field
annotation : Any, optional
The type annotation of the parameter
alias : str, optional
The public name of the field
alias_priority : int, optional
Priority of the alias. This affects whether an alias generator is used
validation_alias : str | AliasPath | AliasChoices | None, optional
Alias to be used for validation only
serialization_alias : str | AliasPath | AliasChoices | None, optional
Alias to be used for serialization only
title : str, optional
The title of the parameter
description : str, optional
The description of the parameter
gt : float, optional
Only applies to numbers, required the field to be "greater than"
ge : float, optional
Only applies to numbers, required the field to be "greater than or equal"
lt : float, optional
Only applies to numbers, required the field to be "less than"
le : float, optional
Only applies to numbers, required the field to be "less than or equal"
min_length : int, optional
Only applies to strings, required the field to have a minimum length
max_length : int, optional
Only applies to strings, required the field to have a maximum length
pattern : str, optional
Only applies to strings, requires the field match against a regular expression pattern string
discriminator : str, optional
Parameter field name for discriminating the type in a tagged union
strict : bool, optional
Enables Pydantic's strict mode for the field
multiple_of : float, optional
Only applies to numbers, requires the field to be a multiple of the given value
allow_inf_nan : bool, optional
Only applies to numbers, requires the field to allow infinity and NaN values
max_digits : int, optional
Only applies to Decimals, requires the field to have a maxmium number of digits within the decimal.
decimal_places : int, optional
Only applies to Decimals, requires the field to have at most a number of decimal places
examples : List[Any], optional
A list of examples for the parameter
deprecated : bool, optional
If True, the parameter will be marked as deprecated
include_in_schema : bool, optional
If False, the parameter will be excluded from the generated OpenAPI schema
json_schema_extra : Dict[str, Any], optional
Extra values to include in the generated OpenAPI schema
Expand source code
class Path(Param):
    """
    A class used internally to represent a path parameter in a path operation.
    """

    in_ = ParamTypes.path

    def __init__(
        self,
        default: Any = ...,
        *,
        default_factory: Union[Callable[[], Any], None] = _Unset,
        annotation: Optional[Any] = None,
        alias: Optional[str] = None,
        alias_priority: Union[int, None] = _Unset,
        # MAINTENANCE: update when deprecating Pydantic v1, import these types
        # MAINTENANCE: validation_alias: str | AliasPath | AliasChoices | None
        validation_alias: Union[str, None] = None,
        serialization_alias: Union[str, None] = None,
        title: Optional[str] = None,
        description: Optional[str] = None,
        gt: Optional[float] = None,
        ge: Optional[float] = None,
        lt: Optional[float] = None,
        le: Optional[float] = None,
        min_length: Optional[int] = None,
        max_length: Optional[int] = None,
        pattern: Optional[str] = None,
        discriminator: Union[str, None] = None,
        strict: Union[bool, None] = _Unset,
        multiple_of: Union[float, None] = _Unset,
        allow_inf_nan: Union[bool, None] = _Unset,
        max_digits: Union[int, None] = _Unset,
        decimal_places: Union[int, None] = _Unset,
        examples: Optional[List[Any]] = None,
        deprecated: Optional[bool] = None,
        include_in_schema: bool = True,
        json_schema_extra: Union[Dict[str, Any], None] = None,
        **extra: Any,
    ):
        """
        Constructs a new Path param.

        Parameters
        ----------
        default: Any
            The default value of the parameter
        default_factory: Callable[[], Any], optional
            Callable that will be called when a default value is needed for this field
        annotation: Any, optional
            The type annotation of the parameter
        alias: str, optional
            The public name of the field
        alias_priority: int, optional
            Priority of the alias. This affects whether an alias generator is used
        validation_alias: str | AliasPath | AliasChoices | None, optional
            Alias to be used for validation only
        serialization_alias: str | AliasPath | AliasChoices | None, optional
            Alias to be used for serialization only
        title: str, optional
            The title of the parameter
        description: str, optional
            The description of the parameter
        gt: float, optional
            Only applies to numbers, required the field to be "greater than"
        ge: float, optional
            Only applies to numbers, required the field to be "greater than or equal"
        lt: float, optional
            Only applies to numbers, required the field to be "less than"
        le: float, optional
            Only applies to numbers, required the field to be "less than or equal"
        min_length: int, optional
            Only applies to strings, required the field to have a minimum length
        max_length: int, optional
            Only applies to strings, required the field to have a maximum length
        pattern: str, optional
            Only applies to strings, requires the field match against a regular expression pattern string
        discriminator: str, optional
            Parameter field name for discriminating the type in a tagged union
        strict: bool, optional
            Enables Pydantic's strict mode for the field
        multiple_of: float, optional
            Only applies to numbers, requires the field to be a multiple of the given value
        allow_inf_nan: bool, optional
            Only applies to numbers, requires the field to allow infinity and NaN values
        max_digits: int, optional
            Only applies to Decimals, requires the field to have a maxmium number of digits within the decimal.
        decimal_places: int, optional
            Only applies to Decimals, requires the field to have at most a number of decimal places
        examples: List[Any], optional
            A list of examples for the parameter
        deprecated: bool, optional
            If `True`, the parameter will be marked as deprecated
        include_in_schema: bool, optional
            If `False`, the parameter will be excluded from the generated OpenAPI schema
        json_schema_extra: Dict[str, Any], optional
            Extra values to include in the generated OpenAPI schema
        """
        if default is not ...:
            raise AssertionError("Path parameters cannot have a default value")

        super(Path, self).__init__(
            default=default,
            default_factory=default_factory,
            annotation=annotation,
            alias=alias,
            alias_priority=alias_priority,
            validation_alias=validation_alias,
            serialization_alias=serialization_alias,
            title=title,
            description=description,
            gt=gt,
            ge=ge,
            lt=lt,
            le=le,
            min_length=min_length,
            max_length=max_length,
            pattern=pattern,
            discriminator=discriminator,
            strict=strict,
            multiple_of=multiple_of,
            allow_inf_nan=allow_inf_nan,
            max_digits=max_digits,
            decimal_places=decimal_places,
            deprecated=deprecated,
            examples=examples,
            include_in_schema=include_in_schema,
            json_schema_extra=json_schema_extra,
            **extra,
        )

Ancestors

  • Param
  • pydantic.fields.FieldInfo
  • pydantic.utils.Representation

Class variables

var in_ParamTypes
class Query (default: Any = PydanticUndefined, *, default_factory: Optional[Callable[[], Any]] = PydanticUndefined, annotation: Optional[Any] = None, alias: Optional[str] = None, alias_priority: Optional[int] = PydanticUndefined, validation_alias: Optional[str] = None, serialization_alias: Optional[str] = None, title: Optional[str] = None, description: Optional[str] = None, gt: Optional[float] = None, ge: Optional[float] = None, lt: Optional[float] = None, le: Optional[float] = None, min_length: Optional[int] = None, max_length: Optional[int] = None, pattern: Optional[str] = None, discriminator: Optional[str] = None, strict: Optional[bool] = PydanticUndefined, multiple_of: Optional[float] = PydanticUndefined, allow_inf_nan: Optional[bool] = PydanticUndefined, max_digits: Optional[int] = PydanticUndefined, decimal_places: Optional[int] = PydanticUndefined, examples: Optional[List[Any]] = None, deprecated: Optional[bool] = None, include_in_schema: bool = True, json_schema_extra: Optional[Dict[str, Any]] = None, **extra: Any)

A class used internally to represent a query parameter in a path operation.

Constructs a new Query param.

Parameters

default : Any
The default value of the parameter
default_factory : Callable[[], Any], optional
Callable that will be called when a default value is needed for this field
annotation : Any, optional
The type annotation of the parameter
alias : str, optional
The public name of the field
alias_priority : int, optional
Priority of the alias. This affects whether an alias generator is used
validation_alias : str | AliasPath | AliasChoices | None, optional
Alias to be used for validation only
serialization_alias : str | AliasPath | AliasChoices | None, optional
Alias to be used for serialization only
title : str, optional
The title of the parameter
description : str, optional
The description of the parameter
gt : float, optional
Only applies to numbers, required the field to be "greater than"
ge : float, optional
Only applies to numbers, required the field to be "greater than or equal"
lt : float, optional
Only applies to numbers, required the field to be "less than"
le : float, optional
Only applies to numbers, required the field to be "less than or equal"
min_length : int, optional
Only applies to strings, required the field to have a minimum length
max_length : int, optional
Only applies to strings, required the field to have a maximum length
pattern : str, optional
Only applies to strings, requires the field match against a regular expression pattern string
discriminator : str, optional
Parameter field name for discriminating the type in a tagged union
strict : bool, optional
Enables Pydantic's strict mode for the field
multiple_of : float, optional
Only applies to numbers, requires the field to be a multiple of the given value
allow_inf_nan : bool, optional
Only applies to numbers, requires the field to allow infinity and NaN values
max_digits : int, optional
Only applies to Decimals, requires the field to have a maxmium number of digits within the decimal.
decimal_places : int, optional
Only applies to Decimals, requires the field to have at most a number of decimal places
examples : List[Any], optional
A list of examples for the parameter
deprecated : bool, optional
If True, the parameter will be marked as deprecated
include_in_schema : bool, optional
If False, the parameter will be excluded from the generated OpenAPI schema
json_schema_extra : Dict[str, Any], optional
Extra values to include in the generated OpenAPI schema
Expand source code
class Query(Param):
    """
    A class used internally to represent a query parameter in a path operation.
    """

    in_ = ParamTypes.query

    def __init__(
        self,
        default: Any = _Unset,
        *,
        default_factory: Union[Callable[[], Any], None] = _Unset,
        annotation: Optional[Any] = None,
        alias: Optional[str] = None,
        alias_priority: Union[int, None] = _Unset,
        validation_alias: Union[str, None] = None,
        serialization_alias: Union[str, None] = None,
        title: Optional[str] = None,
        description: Optional[str] = None,
        gt: Optional[float] = None,
        ge: Optional[float] = None,
        lt: Optional[float] = None,
        le: Optional[float] = None,
        min_length: Optional[int] = None,
        max_length: Optional[int] = None,
        pattern: Optional[str] = None,
        discriminator: Union[str, None] = None,
        strict: Union[bool, None] = _Unset,
        multiple_of: Union[float, None] = _Unset,
        allow_inf_nan: Union[bool, None] = _Unset,
        max_digits: Union[int, None] = _Unset,
        decimal_places: Union[int, None] = _Unset,
        examples: Optional[List[Any]] = None,
        deprecated: Optional[bool] = None,
        include_in_schema: bool = True,
        json_schema_extra: Union[Dict[str, Any], None] = None,
        **extra: Any,
    ):
        """
        Constructs a new Query param.

        Parameters
        ----------
        default: Any
            The default value of the parameter
        default_factory: Callable[[], Any], optional
            Callable that will be called when a default value is needed for this field
        annotation: Any, optional
            The type annotation of the parameter
        alias: str, optional
            The public name of the field
        alias_priority: int, optional
            Priority of the alias. This affects whether an alias generator is used
        validation_alias: str | AliasPath | AliasChoices | None, optional
            Alias to be used for validation only
        serialization_alias: str | AliasPath | AliasChoices | None, optional
            Alias to be used for serialization only
        title: str, optional
            The title of the parameter
        description: str, optional
            The description of the parameter
        gt: float, optional
            Only applies to numbers, required the field to be "greater than"
        ge: float, optional
            Only applies to numbers, required the field to be "greater than or equal"
        lt: float, optional
            Only applies to numbers, required the field to be "less than"
        le: float, optional
            Only applies to numbers, required the field to be "less than or equal"
        min_length: int, optional
            Only applies to strings, required the field to have a minimum length
        max_length: int, optional
            Only applies to strings, required the field to have a maximum length
        pattern: str, optional
            Only applies to strings, requires the field match against a regular expression pattern string
        discriminator: str, optional
            Parameter field name for discriminating the type in a tagged union
        strict: bool, optional
            Enables Pydantic's strict mode for the field
        multiple_of: float, optional
            Only applies to numbers, requires the field to be a multiple of the given value
        allow_inf_nan: bool, optional
            Only applies to numbers, requires the field to allow infinity and NaN values
        max_digits: int, optional
            Only applies to Decimals, requires the field to have a maxmium number of digits within the decimal.
        decimal_places: int, optional
            Only applies to Decimals, requires the field to have at most a number of decimal places
        examples: List[Any], optional
            A list of examples for the parameter
        deprecated: bool, optional
            If `True`, the parameter will be marked as deprecated
        include_in_schema: bool, optional
            If `False`, the parameter will be excluded from the generated OpenAPI schema
        json_schema_extra: Dict[str, Any], optional
            Extra values to include in the generated OpenAPI schema
        """
        super().__init__(
            default=default,
            default_factory=default_factory,
            annotation=annotation,
            alias=alias,
            alias_priority=alias_priority,
            validation_alias=validation_alias,
            serialization_alias=serialization_alias,
            title=title,
            description=description,
            gt=gt,
            ge=ge,
            lt=lt,
            le=le,
            min_length=min_length,
            max_length=max_length,
            pattern=pattern,
            discriminator=discriminator,
            strict=strict,
            multiple_of=multiple_of,
            allow_inf_nan=allow_inf_nan,
            max_digits=max_digits,
            decimal_places=decimal_places,
            deprecated=deprecated,
            examples=examples,
            include_in_schema=include_in_schema,
            json_schema_extra=json_schema_extra,
            **extra,
        )

Ancestors

  • Param
  • pydantic.fields.FieldInfo
  • pydantic.utils.Representation

Class variables

var in_ParamTypes