in elasticsearch/dsl/field.py [0:0]
def __init__(
self,
*args: Any,
norms: Union[bool, "DefaultType"] = DEFAULT,
index_options: Union[
Literal["docs", "freqs", "positions", "offsets"], "DefaultType"
] = DEFAULT,
index: Union[bool, "DefaultType"] = DEFAULT,
null_value: Union[str, "DefaultType"] = DEFAULT,
rules: Union[str, "DefaultType"] = DEFAULT,
language: Union[str, "DefaultType"] = DEFAULT,
country: Union[str, "DefaultType"] = DEFAULT,
variant: Union[str, "DefaultType"] = DEFAULT,
strength: Union[
Literal["primary", "secondary", "tertiary", "quaternary", "identical"],
"DefaultType",
] = DEFAULT,
decomposition: Union[Literal["no", "identical"], "DefaultType"] = DEFAULT,
alternate: Union[Literal["shifted", "non-ignorable"], "DefaultType"] = DEFAULT,
case_level: Union[bool, "DefaultType"] = DEFAULT,
case_first: Union[Literal["lower", "upper"], "DefaultType"] = DEFAULT,
numeric: Union[bool, "DefaultType"] = DEFAULT,
variable_top: Union[str, "DefaultType"] = DEFAULT,
hiragana_quaternary_mode: Union[bool, "DefaultType"] = DEFAULT,
doc_values: Union[bool, "DefaultType"] = DEFAULT,
copy_to: Union[
Union[str, "InstrumentedField"],
Sequence[Union[str, "InstrumentedField"]],
"DefaultType",
] = DEFAULT,
store: Union[bool, "DefaultType"] = DEFAULT,
meta: Union[Mapping[str, str], "DefaultType"] = DEFAULT,
properties: Union[Mapping[str, Field], "DefaultType"] = DEFAULT,
ignore_above: Union[int, "DefaultType"] = DEFAULT,
dynamic: Union[
Literal["strict", "runtime", "true", "false"], bool, "DefaultType"
] = DEFAULT,
fields: Union[Mapping[str, Field], "DefaultType"] = DEFAULT,
synthetic_source_keep: Union[
Literal["none", "arrays", "all"], "DefaultType"
] = DEFAULT,
**kwargs: Any,