kittycad.models.connection.Connection
- class kittycad.models.connection.Connection(**data)[source][source]
Bases:
BaseModel
Metadata about a pub-sub connection.
This is mostly used for internal purposes and debugging.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.
- __init__(**data)[source]
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.
Methods
__init__
(**data)Create a new model by parsing and validating input data from keyword arguments.
construct
(cls[, _fields_set])- rtype:
Model
copy
(*[, include, exclude, update, deep])Returns a copy of the model.
dict
(*[, include, exclude, by_alias, ...])- rtype:
typing.Dict[str, Any]
from_orm
(cls, obj)- rtype:
Model
json
(*[, include, exclude, by_alias, ...])- rtype:
str
model_construct
([_fields_set])Creates a new instance of the Model class with validated data.
model_copy
(*[, update, deep])Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#model_copy
model_dump
(*[, mode, include, exclude, ...])Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump
model_dump_json
(*[, indent, include, ...])Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump_json
model_json_schema
([by_alias, ref_template, ...])Generates a JSON schema for a model class.
model_parametrized_name
(params)Compute the class name for parametrizations of generic classes.
model_post_init
(_BaseModel__context)Override this method to perform additional initialization after __init__ and model_construct.
model_rebuild
(*[, force, raise_errors, ...])Try to rebuild the pydantic-core schema for the model.
model_validate
(obj, *[, strict, ...])Validate a pydantic model instance.
model_validate_json
(json_data, *[, strict, ...])Usage docs: https://docs.pydantic.dev/2.5/concepts/json/#json-parsing
model_validate_strings
(obj, *[, strict, context])Validate the given object contains string data against the Pydantic model.
parse_file
(cls, path, *[, content_type, ...])- rtype:
Model
parse_obj
(cls, obj)- rtype:
Model
parse_raw
(cls, b, *[, content_type, ...])- rtype:
Model
schema
(cls[, by_alias, ref_template])schema_json
(cls, *[, by_alias, ref_template])- rtype:
update_forward_refs
(cls, **localns)- rtype:
validate
(cls, value)- rtype:
Model
Attributes
Get the computed fields of this model instance.
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
Get extra fields set during validation.
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
Returns the set of fields that have been explicitly set on this model instance.
- __annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator]', '__signature__': 'ClassVar[Signature]', 'auth_timeout': typing.Optional[int], 'cluster': typing.Optional[kittycad.models.cluster.Cluster], 'config_load_time': <class 'datetime.datetime'>, 'connections': typing.Optional[int], 'cores': typing.Optional[int], 'cpu': typing.Optional[float], 'gateway': typing.Optional[kittycad.models.gateway.Gateway], 'git_commit': typing.Optional[str], 'go': typing.Optional[str], 'gomaxprocs': typing.Optional[int], 'host': <class 'str'>, 'http_base_path': typing.Optional[str], 'http_host': typing.Optional[str], 'http_port': typing.Optional[int], 'http_req_stats': typing.Dict[str, int], 'https_port': typing.Optional[int], 'in_bytes': typing.Optional[int], 'in_msgs': typing.Optional[int], 'jetstream': typing.Optional[kittycad.models.jetstream.Jetstream], 'leaf': typing.Optional[kittycad.models.leaf_node.LeafNode], 'leafnodes': typing.Optional[int], 'max_connections': typing.Optional[int], 'max_control_line': typing.Optional[int], 'max_payload': typing.Optional[int], 'max_pending': typing.Optional[int], 'mem': typing.Optional[int], 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'now': <class 'datetime.datetime'>, 'out_bytes': typing.Optional[int], 'out_msgs': typing.Optional[int], 'ping_interval': typing.Optional[int], 'ping_max': typing.Optional[int], 'port': typing.Optional[int], 'proto': typing.Optional[int], 'remotes': typing.Optional[int], 'routes': typing.Optional[int], 'server_id': typing.Optional[str], 'server_name': typing.Optional[str], 'slow_consumers': typing.Optional[int], 'start': <class 'datetime.datetime'>, 'subscriptions': typing.Optional[int], 'system_account': typing.Optional[str], 'tls_timeout': typing.Optional[int], 'total_connections': typing.Optional[int], 'uptime': typing.Optional[str], 'version': typing.Optional[str], 'write_deadline': typing.Optional[int]}[source]
- __fields__ = {'auth_timeout': FieldInfo(annotation=Union[int, NoneType], required=False), 'cluster': FieldInfo(annotation=Union[Cluster, NoneType], required=False), 'config_load_time': FieldInfo(annotation=datetime, required=True), 'connections': FieldInfo(annotation=Union[int, NoneType], required=False), 'cores': FieldInfo(annotation=Union[int, NoneType], required=False), 'cpu': FieldInfo(annotation=Union[float, NoneType], required=False), 'gateway': FieldInfo(annotation=Union[Gateway, NoneType], required=False), 'git_commit': FieldInfo(annotation=Union[str, NoneType], required=False), 'go': FieldInfo(annotation=Union[str, NoneType], required=False), 'gomaxprocs': FieldInfo(annotation=Union[int, NoneType], required=False), 'host': FieldInfo(annotation=str, required=True), 'http_base_path': FieldInfo(annotation=Union[str, NoneType], required=False), 'http_host': FieldInfo(annotation=Union[str, NoneType], required=False), 'http_port': FieldInfo(annotation=Union[int, NoneType], required=False), 'http_req_stats': FieldInfo(annotation=Dict[str, int], required=True), 'https_port': FieldInfo(annotation=Union[int, NoneType], required=False), 'in_bytes': FieldInfo(annotation=Union[int, NoneType], required=False), 'in_msgs': FieldInfo(annotation=Union[int, NoneType], required=False), 'jetstream': FieldInfo(annotation=Union[Jetstream, NoneType], required=False), 'leaf': FieldInfo(annotation=Union[LeafNode, NoneType], required=False), 'leafnodes': FieldInfo(annotation=Union[int, NoneType], required=False), 'max_connections': FieldInfo(annotation=Union[int, NoneType], required=False), 'max_control_line': FieldInfo(annotation=Union[int, NoneType], required=False), 'max_payload': FieldInfo(annotation=Union[int, NoneType], required=False), 'max_pending': FieldInfo(annotation=Union[int, NoneType], required=False), 'mem': FieldInfo(annotation=Union[int, NoneType], required=False), 'now': FieldInfo(annotation=datetime, required=True), 'out_bytes': FieldInfo(annotation=Union[int, NoneType], required=False), 'out_msgs': FieldInfo(annotation=Union[int, NoneType], required=False), 'ping_interval': FieldInfo(annotation=Union[int, NoneType], required=False), 'ping_max': FieldInfo(annotation=Union[int, NoneType], required=False), 'port': FieldInfo(annotation=Union[int, NoneType], required=False), 'proto': FieldInfo(annotation=Union[int, NoneType], required=False), 'remotes': FieldInfo(annotation=Union[int, NoneType], required=False), 'routes': FieldInfo(annotation=Union[int, NoneType], required=False), 'server_id': FieldInfo(annotation=Union[str, NoneType], required=False), 'server_name': FieldInfo(annotation=Union[str, NoneType], required=False), 'slow_consumers': FieldInfo(annotation=Union[int, NoneType], required=False), 'start': FieldInfo(annotation=datetime, required=True), 'subscriptions': FieldInfo(annotation=Union[int, NoneType], required=False), 'system_account': FieldInfo(annotation=Union[str, NoneType], required=False), 'tls_timeout': FieldInfo(annotation=Union[int, NoneType], required=False), 'total_connections': FieldInfo(annotation=Union[int, NoneType], required=False), 'uptime': FieldInfo(annotation=Union[str, NoneType], required=False), 'version': FieldInfo(annotation=Union[str, NoneType], required=False), 'write_deadline': FieldInfo(annotation=Union[int, NoneType], required=False)}[source]
- classmethod __get_pydantic_core_schema__(_BaseModel__source, _BaseModel__handler)[source]
Hook into generating the model’s CoreSchema.
- Parameters:
__source – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.
__handler – Call into Pydantic’s internal JSON schema generation. A callable that calls into Pydantic’s internal CoreSchema generation logic.
- Return type:
Union
[AnySchema
,NoneSchema
,BoolSchema
,IntSchema
,FloatSchema
,DecimalSchema
,StringSchema
,BytesSchema
,DateSchema
,TimeSchema
,DatetimeSchema
,TimedeltaSchema
,LiteralSchema
,IsInstanceSchema
,IsSubclassSchema
,CallableSchema
,ListSchema
,TuplePositionalSchema
,TupleVariableSchema
,SetSchema
,FrozenSetSchema
,GeneratorSchema
,DictSchema
,AfterValidatorFunctionSchema
,BeforeValidatorFunctionSchema
,WrapValidatorFunctionSchema
,PlainValidatorFunctionSchema
,WithDefaultSchema
,NullableSchema
,UnionSchema
,TaggedUnionSchema
,ChainSchema
,LaxOrStrictSchema
,JsonOrPythonSchema
,TypedDictSchema
,ModelFieldsSchema
,ModelSchema
,DataclassArgsSchema
,DataclassSchema
,ArgumentsSchema
,CallSchema
,CustomErrorSchema
,JsonSchema
,UrlSchema
,MultiHostUrlSchema
,DefinitionsSchema
,DefinitionReferenceSchema
,UuidSchema
]- Returns:
A pydantic-core CoreSchema.
- classmethod __get_pydantic_json_schema__(_BaseModel__core_schema, _BaseModel__handler)[source]
Hook into generating the model’s JSON schema.
- Parameters:
__core_schema – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({‘type’: ‘nullable’, ‘schema’: current_schema}), or just call the handler with the original schema.
__handler – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.
- Return type:
- Returns:
A JSON schema, as a Python object.
- __init__(**data)[source]
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
__init__ uses __pydantic_self__ instead of the more common self for the first arg to allow self as a field name.
- __pretty__(fmt, **kwargs)[source]
Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.
- __pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.connection.Connection'>, 'config': {'title': 'Connection'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.connection.Connection'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.connection.Connection'>>]}, 'ref': 'kittycad.models.connection.Connection:93825016886576', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'auth_timeout': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'cluster': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'kittycad.models.cluster.Cluster'>, 'config': {'title': 'Cluster'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.cluster.Cluster'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.cluster.Cluster'>>]}, 'ref': 'kittycad.models.cluster.Cluster:93825016638336', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'addr': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'auth_timeout': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'cluster_port': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'name': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'tls_timeout': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'urls': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'items_schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'strict': False, 'type': 'list'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'Cluster', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'config_load_time': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'connections': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'cores': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'cpu': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'gateway': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'kittycad.models.gateway.Gateway'>, 'config': {'title': 'Gateway'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.gateway.Gateway'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.gateway.Gateway'>>]}, 'ref': 'kittycad.models.gateway.Gateway:93825016694944', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'auth_timeout': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'host': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'name': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'port': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'tls_timeout': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'Gateway', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'git_commit': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'go': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'gomaxprocs': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'host': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'model-field'}, 'http_base_path': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'http_host': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'http_port': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'http_req_stats': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'keys_schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'strict': False, 'type': 'dict', 'values_schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}}, 'type': 'model-field'}, 'https_port': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'in_bytes': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'in_msgs': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'jetstream': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'kittycad.models.jetstream.Jetstream'>, 'config': {'title': 'Jetstream'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.jetstream.Jetstream'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.jetstream.Jetstream'>>]}, 'ref': 'kittycad.models.jetstream.Jetstream:93825016797184', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'config': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'kittycad.models.jetstream_config.JetstreamConfig'>, 'config': {'title': 'JetstreamConfig'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.jetstream_config.JetstreamConfig'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.jetstream_config.JetstreamConfig'>>]}, 'ref': 'kittycad.models.jetstream_config.JetstreamConfig:93825016713120', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'domain': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'max_memory': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'max_storage': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'store_dir': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'JetstreamConfig', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'meta': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'kittycad.models.meta_cluster_info.MetaClusterInfo'>, 'config': {'title': 'MetaClusterInfo'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.meta_cluster_info.MetaClusterInfo'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.meta_cluster_info.MetaClusterInfo'>>]}, 'ref': 'kittycad.models.meta_cluster_info.MetaClusterInfo:93825016785136', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'cluster_size': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'leader': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'name': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'MetaClusterInfo', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'stats': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'kittycad.models.jetstream_stats.JetstreamStats'>, 'config': {'title': 'JetstreamStats'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.jetstream_stats.JetstreamStats'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.jetstream_stats.JetstreamStats'>>]}, 'ref': 'kittycad.models.jetstream_stats.JetstreamStats:93825016749280', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'accounts': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'api': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'kittycad.models.jetstream_api_stats.JetstreamApiStats'>, 'config': {'title': 'JetstreamApiStats'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.jetstream_api_stats.JetstreamApiStats'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.jetstream_api_stats.JetstreamApiStats'>>]}, 'ref': 'kittycad.models.jetstream_api_stats.JetstreamApiStats:93825017002192', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'errors': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'inflight': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'total': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'JetstreamApiStats', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'ha_assets': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'memory': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'reserved_memory': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'reserved_store': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'store': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'JetstreamStats', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'Jetstream', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'leaf': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'cls': <class 'kittycad.models.leaf_node.LeafNode'>, 'config': {'title': 'LeafNode'}, 'custom_init': False, 'metadata': {'pydantic.internal.needs_apply_discriminated_union': False, 'pydantic_js_annotation_functions': [], 'pydantic_js_functions': [functools.partial(<function modify_model_json_schema>, cls=<class 'kittycad.models.leaf_node.LeafNode'>), <bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.leaf_node.LeafNode'>>]}, 'ref': 'kittycad.models.leaf_node.LeafNode:93825016864608', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'auth_timeout': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'host': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'port': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'tls_timeout': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'LeafNode', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'leafnodes': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'max_connections': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'max_control_line': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'max_payload': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'max_pending': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'mem': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'now': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'out_bytes': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'out_msgs': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'ping_interval': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'ping_max': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'port': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'proto': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'remotes': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'routes': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'server_id': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'server_name': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'slow_consumers': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'start': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'metadata': {'pydantic_js_annotation_functions': [<bound method InnerSchemaValidator.__get_pydantic_json_schema__ of InnerSchemaValidator(core_schema={'type': 'datetime', 'microseconds_precision': 'truncate', 'metadata': {'pydantic_js_annotation_functions': [...]}}, js_schema=None, js_core_schema=None, js_schema_update=None)>]}, 'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'subscriptions': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'system_account': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'tls_timeout': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'total_connections': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'uptime': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'version': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'write_deadline': {'metadata': {'pydantic_js_annotation_functions': [<function get_json_schema_update_func.<locals>.json_schema_update_func>], 'pydantic_js_functions': []}, 'schema': {'default': None, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'schema': {'metadata': {'pydantic.internal.needs_apply_discriminated_union': False}, 'type': 'int'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'Connection', 'type': 'model-fields'}, 'type': 'model'}[source]
- __pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]
- __pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]
- classmethod __pydantic_init_subclass__(**kwargs)[source]
This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.
This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.
This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.
- __pydantic_parent_namespace__: ClassVar[dict[str, Any] | None] = {'BaseModel': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Cluster': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Dict': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Gateway': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Jetstream': <pydantic._internal._model_construction._PydanticWeakRef object>, 'LeafNode': <pydantic._internal._model_construction._PydanticWeakRef object>, 'Optional': <pydantic._internal._model_construction._PydanticWeakRef object>, '__builtins__': {'ArithmeticError': <class 'ArithmeticError'>, 'AssertionError': <class 'AssertionError'>, 'AttributeError': <class 'AttributeError'>, 'BaseException': <class 'BaseException'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'BufferError': <class 'BufferError'>, 'BytesWarning': <class 'BytesWarning'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionError': <class 'ConnectionError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'EOFError': <class 'EOFError'>, 'Ellipsis': Ellipsis, 'EnvironmentError': <class 'OSError'>, 'Exception': <class 'Exception'>, 'False': False, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'FutureWarning': <class 'FutureWarning'>, 'GeneratorExit': <class 'GeneratorExit'>, 'IOError': <class 'OSError'>, 'ImportError': <class 'ImportError'>, 'ImportWarning': <class 'ImportWarning'>, 'IndentationError': <class 'IndentationError'>, 'IndexError': <class 'IndexError'>, 'InterruptedError': <class 'InterruptedError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'KeyError': <class 'KeyError'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'LookupError': <class 'LookupError'>, 'MemoryError': <class 'MemoryError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'NameError': <class 'NameError'>, 'None': None, 'NotADirectoryError': <class 'NotADirectoryError'>, 'NotImplemented': NotImplemented, 'NotImplementedError': <class 'NotImplementedError'>, 'OSError': <class 'OSError'>, 'OverflowError': <class 'OverflowError'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'RecursionError': <class 'RecursionError'>, 'ReferenceError': <class 'ReferenceError'>, 'ResourceWarning': <class 'ResourceWarning'>, 'RuntimeError': <class 'RuntimeError'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'SyntaxError': <class 'SyntaxError'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'SystemError': <class 'SystemError'>, 'SystemExit': <class 'SystemExit'>, 'TabError': <class 'TabError'>, 'TimeoutError': <class 'TimeoutError'>, 'True': True, 'TypeError': <class 'TypeError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'UserWarning': <class 'UserWarning'>, 'ValueError': <class 'ValueError'>, 'Warning': <class 'Warning'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, '__build_class__': <built-in function __build_class__>, '__debug__': True, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__import__': <built-in function __import__>, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__name__': 'builtins', '__package__': '', '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'bool': <class 'bool'>, 'breakpoint': <built-in function breakpoint>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'classmethod': <class 'classmethod'>, 'compile': <built-in function compile>, 'complex': <class 'complex'>, 'copyright': Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. Copyright (c) 2000 BeOpen.com. All Rights Reserved. Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved. Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved., 'credits': Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands for supporting Python development. See www.python.org for more information., 'delattr': <built-in function delattr>, 'dict': <class 'dict'>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'enumerate': <class 'enumerate'>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'filter': <class 'filter'>, 'float': <class 'float'>, 'format': <built-in function format>, 'frozenset': <class 'frozenset'>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'help': Type help() for interactive help, or help(object) for help about object., 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'int': <class 'int'>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'license': Type license() to see the full license text, 'list': <class 'list'>, 'locals': <built-in function locals>, 'map': <class 'map'>, 'max': <built-in function max>, 'memoryview': <class 'memoryview'>, 'min': <built-in function min>, 'next': <built-in function next>, 'object': <class 'object'>, 'oct': <built-in function oct>, 'open': <built-in function open>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'property': <class 'property'>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'range': <class 'range'>, 'repr': <built-in function repr>, 'reversed': <class 'reversed'>, 'round': <built-in function round>, 'set': <class 'set'>, 'setattr': <built-in function setattr>, 'slice': <class 'slice'>, 'sorted': <built-in function sorted>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'sum': <built-in function sum>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'vars': <built-in function vars>, 'zip': <class 'zip'>}, '__cached__': '/home/user/src/kittycad/models/__pycache__/connection.cpython-39.pyc', '__doc__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__file__': '/home/user/src/kittycad/models/connection.py', '__loader__': <pydantic._internal._model_construction._PydanticWeakRef object>, '__name__': 'kittycad.models.connection', '__package__': 'kittycad.models', '__spec__': <pydantic._internal._model_construction._PydanticWeakRef object>, 'datetime': <pydantic._internal._model_construction._PydanticWeakRef object>}[source]
- __pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model( ModelSerializer { class: Py( 0x0000555556cd7530, ), serializer: Fields( GeneralFieldsSerializer { fields: { "now": SerField { key_py: Py( 0x00007ffffeb89eb0, ), alias: None, alias_py: None, serializer: Some( Datetime( DatetimeSerializer, ), ), required: true, }, "auth_timeout": SerField { key_py: Py( 0x00007fffe1319ab0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "ping_interval": SerField { key_py: Py( 0x00007fffe1247a70, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "out_bytes": SerField { key_py: Py( 0x00007fffe12479f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "out_msgs": SerField { key_py: Py( 0x00007fffe1247a30, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "gomaxprocs": SerField { key_py: Py( 0x00007fffe12472f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "https_port": SerField { key_py: Py( 0x00007fffe12477f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "server_name": SerField { key_py: Py( 0x00007fffe1247bb0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "max_connections": SerField { key_py: Py( 0x00007fffe1247930, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "leafnodes": SerField { key_py: Py( 0x00007fffe12478f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "write_deadline": SerField { key_py: Py( 0x00007fffe1247cb0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "jetstream": SerField { key_py: Py( 0x00007fffe1c7b0f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Model( ModelSerializer { class: Py( 0x0000555556cc1800, ), serializer: Fields( GeneralFieldsSerializer { fields: { "stats": SerField { key_py: Py( 0x00007ffffe3d40b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Model( ModelSerializer { class: Py( 0x0000555556cb5ce0, ), serializer: Fields( GeneralFieldsSerializer { fields: { "ha_assets": SerField { key_py: Py( 0x00007fffe12451b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "api": SerField { key_py: Py( 0x00007ffffd47b830, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Model( ModelSerializer { class: Py( 0x0000555556cf38d0, ), serializer: Fields( GeneralFieldsSerializer { fields: { "errors": SerField { key_py: Py( 0x00007fffff8abb70, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "inflight": SerField { key_py: Py( 0x00007fffe12560b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "total": SerField { key_py: Py( 0x00007fffff763c30, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, }, computed_fields: Some( ComputedFields( [], ), ), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None, }, required_fields: 3, }, ), has_extra: false, root_model: false, name: "JetstreamApiStats", }, ), }, ), }, ), ), required: true, }, "reserved_store": SerField { key_py: Py( 0x00007fffe124ff70, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "memory": SerField { key_py: Py( 0x00007fffe12458f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "store": SerField { key_py: Py( 0x00007fffff672730, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "accounts": SerField { key_py: Py( 0x00007fffe12456f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "reserved_memory": SerField { key_py: Py( 0x00007fffe124f5f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, }, computed_fields: Some( ComputedFields( [], ), ), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None, }, required_fields: 7, }, ), has_extra: false, root_model: false, name: "JetstreamStats", }, ), }, ), }, ), ), required: true, }, "meta": SerField { key_py: Py( 0x00007fffff7a7130, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Model( ModelSerializer { class: Py( 0x0000555556cbe8f0, ), serializer: Fields( GeneralFieldsSerializer { fields: { "name": SerField { key_py: Py( 0x00007fffff9521b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "cluster_size": SerField { key_py: Py( 0x00007fffe124f8f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "leader": SerField { key_py: Py( 0x00007fffe124fbf0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, }, computed_fields: Some( ComputedFields( [], ), ), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None, }, required_fields: 3, }, ), has_extra: false, root_model: false, name: "MetaClusterInfo", }, ), }, ), }, ), ), required: true, }, "config": SerField { key_py: Py( 0x00007fffff2aa870, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Model( ModelSerializer { class: Py( 0x0000555556cacfa0, ), serializer: Fields( GeneralFieldsSerializer { fields: { "store_dir": SerField { key_py: Py( 0x00007fffe124f870, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "max_memory": SerField { key_py: Py( 0x00007fffe124f4f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "max_storage": SerField { key_py: Py( 0x00007fffe124f830, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "domain": SerField { key_py: Py( 0x00007fffff68acf0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, }, computed_fields: Some( ComputedFields( [], ), ), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None, }, required_fields: 4, }, ), has_extra: false, root_model: false, name: "JetstreamConfig", }, ), }, ), }, ), ), required: true, }, }, computed_fields: Some( ComputedFields( [], ), ), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None, }, required_fields: 3, }, ), has_extra: false, root_model: false, name: "Jetstream", }, ), }, ), }, ), ), required: true, }, "max_control_line": SerField { key_py: Py( 0x00007fffe12422b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "ping_max": SerField { key_py: Py( 0x00007fffe1247ab0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "http_host": SerField { key_py: Py( 0x00007fffe1247730, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "system_account": SerField { key_py: Py( 0x00007fffe1247c30, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "git_commit": SerField { key_py: Py( 0x00007fffe12474f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "leaf": SerField { key_py: Py( 0x00007fffe12478b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Model( ModelSerializer { class: Py( 0x0000555556cd1f60, ), serializer: Fields( GeneralFieldsSerializer { fields: { "auth_timeout": SerField { key_py: Py( 0x00007fffe1319ab0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "port": SerField { key_py: Py( 0x00007fffff51a130, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "host": SerField { key_py: Py( 0x00007fffff51a0b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "tls_timeout": SerField { key_py: Py( 0x00007fffe130cbf0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, }, computed_fields: Some( ComputedFields( [], ), ), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None, }, required_fields: 4, }, ), has_extra: false, root_model: false, name: "LeafNode", }, ), }, ), }, ), ), required: true, }, "config_load_time": SerField { key_py: Py( 0x00007fffe12423a0, ), alias: None, alias_py: None, serializer: Some( Datetime( DatetimeSerializer, ), ), required: true, }, "mem": SerField { key_py: Py( 0x00007ffffd7cd4b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "cpu": SerField { key_py: Py( 0x00007fffe12475b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Float( FloatSerializer { inf_nan_mode: Null, }, ), }, ), }, ), ), required: true, }, "proto": SerField { key_py: Py( 0x00007fffff6f45f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "start": SerField { key_py: Py( 0x00007fffff929c30, ), alias: None, alias_py: None, serializer: Some( Datetime( DatetimeSerializer, ), ), required: true, }, "routes": SerField { key_py: Py( 0x00007fffe1247b30, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "connections": SerField { key_py: Py( 0x00007ffffd1a2d30, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "http_req_stats": SerField { key_py: Py( 0x00007fffe12477b0, ), alias: None, alias_py: None, serializer: Some( Dict( DictSerializer { key_serializer: Str( StrSerializer, ), value_serializer: Int( IntSerializer, ), filter: SchemaFilter { include: None, exclude: None, }, name: "dict[str, int]", }, ), ), required: true, }, "in_msgs": SerField { key_py: Py( 0x00007fffe1247870, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "gateway": SerField { key_py: Py( 0x00007fffe1c7bbb0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Model( ModelSerializer { class: Py( 0x0000555556ca88a0, ), serializer: Fields( GeneralFieldsSerializer { fields: { "tls_timeout": SerField { key_py: Py( 0x00007fffe130cbf0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "port": SerField { key_py: Py( 0x00007fffff51a130, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "name": SerField { key_py: Py( 0x00007fffff9521b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "auth_timeout": SerField { key_py: Py( 0x00007fffe1319ab0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "host": SerField { key_py: Py( 0x00007fffff51a0b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, }, computed_fields: Some( ComputedFields( [], ), ), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None, }, required_fields: 5, }, ), has_extra: false, root_model: false, name: "Gateway", }, ), }, ), }, ), ), required: true, }, "cluster": SerField { key_py: Py( 0x00007fffe1c81570, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Model( ModelSerializer { class: Py( 0x0000555556c9ab80, ), serializer: Fields( GeneralFieldsSerializer { fields: { "urls": SerField { key_py: Py( 0x00007ffffdc81530, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: List( ListSerializer { item_serializer: Str( StrSerializer, ), filter: SchemaFilter { include: None, exclude: None, }, name: "list[str]", }, ), }, ), }, ), ), required: true, }, "tls_timeout": SerField { key_py: Py( 0x00007fffe130cbf0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "name": SerField { key_py: Py( 0x00007fffff9521b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "auth_timeout": SerField { key_py: Py( 0x00007fffe1319ab0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "addr": SerField { key_py: Py( 0x00007fffff5d1bf0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "cluster_port": SerField { key_py: Py( 0x00007fffe13199b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, }, computed_fields: Some( ComputedFields( [], ), ), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None, }, required_fields: 6, }, ), has_extra: false, root_model: false, name: "Cluster", }, ), }, ), }, ), ), required: true, }, "tls_timeout": SerField { key_py: Py( 0x00007fffe130cbf0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "max_payload": SerField { key_py: Py( 0x00007fffe1247970, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "uptime": SerField { key_py: Py( 0x00007fffe1247c70, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "slow_consumers": SerField { key_py: Py( 0x00007fffe1247bf0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "subscriptions": SerField { key_py: Py( 0x00007fffe1d94e30, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "version": SerField { key_py: Py( 0x00007fffff8e3870, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "total_connections": SerField { key_py: Py( 0x00007fffe1242300, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "in_bytes": SerField { key_py: Py( 0x00007fffe1247830, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "http_port": SerField { key_py: Py( 0x00007fffe1247770, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "remotes": SerField { key_py: Py( 0x00007fffe1247af0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "go": SerField { key_py: Py( 0x00007fffff1f4530, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "http_base_path": SerField { key_py: Py( 0x00007fffe12476f0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "server_id": SerField { key_py: Py( 0x00007fffe1247b70, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Str( StrSerializer, ), }, ), }, ), ), required: true, }, "cores": SerField { key_py: Py( 0x00007fffe13753b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "max_pending": SerField { key_py: Py( 0x00007fffe12479b0, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "port": SerField { key_py: Py( 0x00007fffff51a130, ), alias: None, alias_py: None, serializer: Some( WithDefault( WithDefaultSerializer { default: Default( Py( 0x00007ffffff85420, ), ), serializer: Nullable( NullableSerializer { serializer: Int( IntSerializer, ), }, ), }, ), ), required: true, }, "host": SerField { key_py: Py( 0x00007fffff51a0b0, ), alias: None, alias_py: None, serializer: Some( Str( StrSerializer, ), ), required: true, }, }, computed_fields: Some( ComputedFields( [], ), ), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None, }, required_fields: 46, }, ), has_extra: false, root_model: false, name: "Connection", }, ), definitions=[])[source]
- __pydantic_validator__: ClassVar[SchemaValidator] = SchemaValidator(title="Connection", validator=Model( ModelValidator { revalidate: Never, validator: ModelFields( ModelFieldsValidator { fields: [ Field { name: "auth_timeout", lookup_key: Simple { key: "auth_timeout", py_key: Py( 0x00007fffe1319ab0, ), path: LookupPath( [ S( "auth_timeout", Py( 0x00007fffe1319ab0, ), ), ], ), }, name_py: Py( 0x00007fffe1319ab0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "cluster", lookup_key: Simple { key: "cluster", py_key: Py( 0x00007fffe1c81570, ), path: LookupPath( [ S( "cluster", Py( 0x00007fffe1c81570, ), ), ], ), }, name_py: Py( 0x00007fffe1c81570, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Model( ModelValidator { revalidate: Never, validator: ModelFields( ModelFieldsValidator { fields: [ Field { name: "addr", lookup_key: Simple { key: "addr", py_key: Py( 0x00007fffff5d1bf0, ), path: LookupPath( [ S( "addr", Py( 0x00007fffff5d1bf0, ), ), ], ), }, name_py: Py( 0x00007fffff5d1bf0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "auth_timeout", lookup_key: Simple { key: "auth_timeout", py_key: Py( 0x00007fffe1319ab0, ), path: LookupPath( [ S( "auth_timeout", Py( 0x00007fffe1319ab0, ), ), ], ), }, name_py: Py( 0x00007fffe1319ab0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "cluster_port", lookup_key: Simple { key: "cluster_port", py_key: Py( 0x00007fffe13199b0, ), path: LookupPath( [ S( "cluster_port", Py( 0x00007fffe13199b0, ), ), ], ), }, name_py: Py( 0x00007fffe13199b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "name", lookup_key: Simple { key: "name", py_key: Py( 0x00007fffff9521b0, ), path: LookupPath( [ S( "name", Py( 0x00007fffff9521b0, ), ), ], ), }, name_py: Py( 0x00007fffff9521b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "tls_timeout", lookup_key: Simple { key: "tls_timeout", py_key: Py( 0x00007fffe130cbf0, ), path: LookupPath( [ S( "tls_timeout", Py( 0x00007fffe130cbf0, ), ), ], ), }, name_py: Py( 0x00007fffe130cbf0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "urls", lookup_key: Simple { key: "urls", py_key: Py( 0x00007ffffdc81530, ), path: LookupPath( [ S( "urls", Py( 0x00007ffffdc81530, ), ), ], ), }, name_py: Py( 0x00007ffffdc81530, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: List( ListValidator { strict: false, item_validator: Some( Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), ), min_length: None, max_length: None, name: OnceLock( "list[str]", ), }, ), name: "nullable[list[str]]", }, ), validate_default: false, copy_default: false, name: "default[nullable[list[str]]]", }, ), frozen: false, }, ], model_name: "Cluster", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true, }, ), class: Py( 0x0000555556c9ab80, ), post_init: None, frozen: false, custom_init: false, root_model: false, name: "Cluster", }, ), name: "nullable[Cluster]", }, ), validate_default: false, copy_default: false, name: "default[nullable[Cluster]]", }, ), frozen: false, }, Field { name: "config_load_time", lookup_key: Simple { key: "config_load_time", py_key: Py( 0x00007fffe12423a0, ), path: LookupPath( [ S( "config_load_time", Py( 0x00007fffe12423a0, ), ), ], ), }, name_py: Py( 0x00007fffe12423a0, ), validator: Datetime( DateTimeValidator { strict: false, constraints: None, microseconds_precision: Truncate, }, ), frozen: false, }, Field { name: "connections", lookup_key: Simple { key: "connections", py_key: Py( 0x00007ffffd1a2d30, ), path: LookupPath( [ S( "connections", Py( 0x00007ffffd1a2d30, ), ), ], ), }, name_py: Py( 0x00007ffffd1a2d30, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "cores", lookup_key: Simple { key: "cores", py_key: Py( 0x00007fffe13753b0, ), path: LookupPath( [ S( "cores", Py( 0x00007fffe13753b0, ), ), ], ), }, name_py: Py( 0x00007fffe13753b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "cpu", lookup_key: Simple { key: "cpu", py_key: Py( 0x00007fffe12475b0, ), path: LookupPath( [ S( "cpu", Py( 0x00007fffe12475b0, ), ), ], ), }, name_py: Py( 0x00007fffe12475b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Float( FloatValidator { strict: false, allow_inf_nan: true, }, ), name: "nullable[float]", }, ), validate_default: false, copy_default: false, name: "default[nullable[float]]", }, ), frozen: false, }, Field { name: "gateway", lookup_key: Simple { key: "gateway", py_key: Py( 0x00007fffe1c7bbb0, ), path: LookupPath( [ S( "gateway", Py( 0x00007fffe1c7bbb0, ), ), ], ), }, name_py: Py( 0x00007fffe1c7bbb0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Model( ModelValidator { revalidate: Never, validator: ModelFields( ModelFieldsValidator { fields: [ Field { name: "auth_timeout", lookup_key: Simple { key: "auth_timeout", py_key: Py( 0x00007fffe1319ab0, ), path: LookupPath( [ S( "auth_timeout", Py( 0x00007fffe1319ab0, ), ), ], ), }, name_py: Py( 0x00007fffe1319ab0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "host", lookup_key: Simple { key: "host", py_key: Py( 0x00007fffff51a0b0, ), path: LookupPath( [ S( "host", Py( 0x00007fffff51a0b0, ), ), ], ), }, name_py: Py( 0x00007fffff51a0b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "name", lookup_key: Simple { key: "name", py_key: Py( 0x00007fffff9521b0, ), path: LookupPath( [ S( "name", Py( 0x00007fffff9521b0, ), ), ], ), }, name_py: Py( 0x00007fffff9521b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "port", lookup_key: Simple { key: "port", py_key: Py( 0x00007fffff51a130, ), path: LookupPath( [ S( "port", Py( 0x00007fffff51a130, ), ), ], ), }, name_py: Py( 0x00007fffff51a130, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "tls_timeout", lookup_key: Simple { key: "tls_timeout", py_key: Py( 0x00007fffe130cbf0, ), path: LookupPath( [ S( "tls_timeout", Py( 0x00007fffe130cbf0, ), ), ], ), }, name_py: Py( 0x00007fffe130cbf0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, ], model_name: "Gateway", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true, }, ), class: Py( 0x0000555556ca88a0, ), post_init: None, frozen: false, custom_init: false, root_model: false, name: "Gateway", }, ), name: "nullable[Gateway]", }, ), validate_default: false, copy_default: false, name: "default[nullable[Gateway]]", }, ), frozen: false, }, Field { name: "git_commit", lookup_key: Simple { key: "git_commit", py_key: Py( 0x00007fffe12474f0, ), path: LookupPath( [ S( "git_commit", Py( 0x00007fffe12474f0, ), ), ], ), }, name_py: Py( 0x00007fffe12474f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "go", lookup_key: Simple { key: "go", py_key: Py( 0x00007fffff1f4530, ), path: LookupPath( [ S( "go", Py( 0x00007fffff1f4530, ), ), ], ), }, name_py: Py( 0x00007fffff1f4530, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "gomaxprocs", lookup_key: Simple { key: "gomaxprocs", py_key: Py( 0x00007fffe12472f0, ), path: LookupPath( [ S( "gomaxprocs", Py( 0x00007fffe12472f0, ), ), ], ), }, name_py: Py( 0x00007fffe12472f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "host", lookup_key: Simple { key: "host", py_key: Py( 0x00007fffff51a0b0, ), path: LookupPath( [ S( "host", Py( 0x00007fffff51a0b0, ), ), ], ), }, name_py: Py( 0x00007fffff51a0b0, ), validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), frozen: false, }, Field { name: "http_base_path", lookup_key: Simple { key: "http_base_path", py_key: Py( 0x00007fffe12476f0, ), path: LookupPath( [ S( "http_base_path", Py( 0x00007fffe12476f0, ), ), ], ), }, name_py: Py( 0x00007fffe12476f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "http_host", lookup_key: Simple { key: "http_host", py_key: Py( 0x00007fffe1247730, ), path: LookupPath( [ S( "http_host", Py( 0x00007fffe1247730, ), ), ], ), }, name_py: Py( 0x00007fffe1247730, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "http_port", lookup_key: Simple { key: "http_port", py_key: Py( 0x00007fffe1247770, ), path: LookupPath( [ S( "http_port", Py( 0x00007fffe1247770, ), ), ], ), }, name_py: Py( 0x00007fffe1247770, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "http_req_stats", lookup_key: Simple { key: "http_req_stats", py_key: Py( 0x00007fffe12477b0, ), path: LookupPath( [ S( "http_req_stats", Py( 0x00007fffe12477b0, ), ), ], ), }, name_py: Py( 0x00007fffe12477b0, ), validator: Dict( DictValidator { strict: false, key_validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), value_validator: Int( IntValidator { strict: false, }, ), min_length: None, max_length: None, name: "dict[str,int]", }, ), frozen: false, }, Field { name: "https_port", lookup_key: Simple { key: "https_port", py_key: Py( 0x00007fffe12477f0, ), path: LookupPath( [ S( "https_port", Py( 0x00007fffe12477f0, ), ), ], ), }, name_py: Py( 0x00007fffe12477f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "in_bytes", lookup_key: Simple { key: "in_bytes", py_key: Py( 0x00007fffe1247830, ), path: LookupPath( [ S( "in_bytes", Py( 0x00007fffe1247830, ), ), ], ), }, name_py: Py( 0x00007fffe1247830, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "in_msgs", lookup_key: Simple { key: "in_msgs", py_key: Py( 0x00007fffe1247870, ), path: LookupPath( [ S( "in_msgs", Py( 0x00007fffe1247870, ), ), ], ), }, name_py: Py( 0x00007fffe1247870, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "jetstream", lookup_key: Simple { key: "jetstream", py_key: Py( 0x00007fffe1c7b0f0, ), path: LookupPath( [ S( "jetstream", Py( 0x00007fffe1c7b0f0, ), ), ], ), }, name_py: Py( 0x00007fffe1c7b0f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Model( ModelValidator { revalidate: Never, validator: ModelFields( ModelFieldsValidator { fields: [ Field { name: "config", lookup_key: Simple { key: "config", py_key: Py( 0x00007fffff2aa870, ), path: LookupPath( [ S( "config", Py( 0x00007fffff2aa870, ), ), ], ), }, name_py: Py( 0x00007fffff2aa870, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Model( ModelValidator { revalidate: Never, validator: ModelFields( ModelFieldsValidator { fields: [ Field { name: "domain", lookup_key: Simple { key: "domain", py_key: Py( 0x00007fffff68acf0, ), path: LookupPath( [ S( "domain", Py( 0x00007fffff68acf0, ), ), ], ), }, name_py: Py( 0x00007fffff68acf0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "max_memory", lookup_key: Simple { key: "max_memory", py_key: Py( 0x00007fffe124f4f0, ), path: LookupPath( [ S( "max_memory", Py( 0x00007fffe124f4f0, ), ), ], ), }, name_py: Py( 0x00007fffe124f4f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "max_storage", lookup_key: Simple { key: "max_storage", py_key: Py( 0x00007fffe124f830, ), path: LookupPath( [ S( "max_storage", Py( 0x00007fffe124f830, ), ), ], ), }, name_py: Py( 0x00007fffe124f830, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "store_dir", lookup_key: Simple { key: "store_dir", py_key: Py( 0x00007fffe124f870, ), path: LookupPath( [ S( "store_dir", Py( 0x00007fffe124f870, ), ), ], ), }, name_py: Py( 0x00007fffe124f870, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, ], model_name: "JetstreamConfig", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true, }, ), class: Py( 0x0000555556cacfa0, ), post_init: None, frozen: false, custom_init: false, root_model: false, name: "JetstreamConfig", }, ), name: "nullable[JetstreamConfig]", }, ), validate_default: false, copy_default: false, name: "default[nullable[JetstreamConfig]]", }, ), frozen: false, }, Field { name: "meta", lookup_key: Simple { key: "meta", py_key: Py( 0x00007fffff7a7130, ), path: LookupPath( [ S( "meta", Py( 0x00007fffff7a7130, ), ), ], ), }, name_py: Py( 0x00007fffff7a7130, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Model( ModelValidator { revalidate: Never, validator: ModelFields( ModelFieldsValidator { fields: [ Field { name: "cluster_size", lookup_key: Simple { key: "cluster_size", py_key: Py( 0x00007fffe124f8f0, ), path: LookupPath( [ S( "cluster_size", Py( 0x00007fffe124f8f0, ), ), ], ), }, name_py: Py( 0x00007fffe124f8f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "leader", lookup_key: Simple { key: "leader", py_key: Py( 0x00007fffe124fbf0, ), path: LookupPath( [ S( "leader", Py( 0x00007fffe124fbf0, ), ), ], ), }, name_py: Py( 0x00007fffe124fbf0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "name", lookup_key: Simple { key: "name", py_key: Py( 0x00007fffff9521b0, ), path: LookupPath( [ S( "name", Py( 0x00007fffff9521b0, ), ), ], ), }, name_py: Py( 0x00007fffff9521b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, ], model_name: "MetaClusterInfo", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true, }, ), class: Py( 0x0000555556cbe8f0, ), post_init: None, frozen: false, custom_init: false, root_model: false, name: "MetaClusterInfo", }, ), name: "nullable[MetaClusterInfo]", }, ), validate_default: false, copy_default: false, name: "default[nullable[MetaClusterInfo]]", }, ), frozen: false, }, Field { name: "stats", lookup_key: Simple { key: "stats", py_key: Py( 0x00007ffffe3d40b0, ), path: LookupPath( [ S( "stats", Py( 0x00007ffffe3d40b0, ), ), ], ), }, name_py: Py( 0x00007ffffe3d40b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Model( ModelValidator { revalidate: Never, validator: ModelFields( ModelFieldsValidator { fields: [ Field { name: "accounts", lookup_key: Simple { key: "accounts", py_key: Py( 0x00007fffe12456f0, ), path: LookupPath( [ S( "accounts", Py( 0x00007fffe12456f0, ), ), ], ), }, name_py: Py( 0x00007fffe12456f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "api", lookup_key: Simple { key: "api", py_key: Py( 0x00007ffffd47b830, ), path: LookupPath( [ S( "api", Py( 0x00007ffffd47b830, ), ), ], ), }, name_py: Py( 0x00007ffffd47b830, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Model( ModelValidator { revalidate: Never, validator: ModelFields( ModelFieldsValidator { fields: [ Field { name: "errors", lookup_key: Simple { key: "errors", py_key: Py( 0x00007fffff8abb70, ), path: LookupPath( [ S( "errors", Py( 0x00007fffff8abb70, ), ), ], ), }, name_py: Py( 0x00007fffff8abb70, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "inflight", lookup_key: Simple { key: "inflight", py_key: Py( 0x00007fffe12560b0, ), path: LookupPath( [ S( "inflight", Py( 0x00007fffe12560b0, ), ), ], ), }, name_py: Py( 0x00007fffe12560b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "total", lookup_key: Simple { key: "total", py_key: Py( 0x00007fffff763c30, ), path: LookupPath( [ S( "total", Py( 0x00007fffff763c30, ), ), ], ), }, name_py: Py( 0x00007fffff763c30, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, ], model_name: "JetstreamApiStats", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true, }, ), class: Py( 0x0000555556cf38d0, ), post_init: None, frozen: false, custom_init: false, root_model: false, name: "JetstreamApiStats", }, ), name: "nullable[JetstreamApiStats]", }, ), validate_default: false, copy_default: false, name: "default[nullable[JetstreamApiStats]]", }, ), frozen: false, }, Field { name: "ha_assets", lookup_key: Simple { key: "ha_assets", py_key: Py( 0x00007fffe12451b0, ), path: LookupPath( [ S( "ha_assets", Py( 0x00007fffe12451b0, ), ), ], ), }, name_py: Py( 0x00007fffe12451b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "memory", lookup_key: Simple { key: "memory", py_key: Py( 0x00007fffe12458f0, ), path: LookupPath( [ S( "memory", Py( 0x00007fffe12458f0, ), ), ], ), }, name_py: Py( 0x00007fffe12458f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "reserved_memory", lookup_key: Simple { key: "reserved_memory", py_key: Py( 0x00007fffe124f5f0, ), path: LookupPath( [ S( "reserved_memory", Py( 0x00007fffe124f5f0, ), ), ], ), }, name_py: Py( 0x00007fffe124f5f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "reserved_store", lookup_key: Simple { key: "reserved_store", py_key: Py( 0x00007fffe124ff70, ), path: LookupPath( [ S( "reserved_store", Py( 0x00007fffe124ff70, ), ), ], ), }, name_py: Py( 0x00007fffe124ff70, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "store", lookup_key: Simple { key: "store", py_key: Py( 0x00007fffff672730, ), path: LookupPath( [ S( "store", Py( 0x00007fffff672730, ), ), ], ), }, name_py: Py( 0x00007fffff672730, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, ], model_name: "JetstreamStats", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true, }, ), class: Py( 0x0000555556cb5ce0, ), post_init: None, frozen: false, custom_init: false, root_model: false, name: "JetstreamStats", }, ), name: "nullable[JetstreamStats]", }, ), validate_default: false, copy_default: false, name: "default[nullable[JetstreamStats]]", }, ), frozen: false, }, ], model_name: "Jetstream", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true, }, ), class: Py( 0x0000555556cc1800, ), post_init: None, frozen: false, custom_init: false, root_model: false, name: "Jetstream", }, ), name: "nullable[Jetstream]", }, ), validate_default: false, copy_default: false, name: "default[nullable[Jetstream]]", }, ), frozen: false, }, Field { name: "leaf", lookup_key: Simple { key: "leaf", py_key: Py( 0x00007fffe12478b0, ), path: LookupPath( [ S( "leaf", Py( 0x00007fffe12478b0, ), ), ], ), }, name_py: Py( 0x00007fffe12478b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Model( ModelValidator { revalidate: Never, validator: ModelFields( ModelFieldsValidator { fields: [ Field { name: "auth_timeout", lookup_key: Simple { key: "auth_timeout", py_key: Py( 0x00007fffe1319ab0, ), path: LookupPath( [ S( "auth_timeout", Py( 0x00007fffe1319ab0, ), ), ], ), }, name_py: Py( 0x00007fffe1319ab0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "host", lookup_key: Simple { key: "host", py_key: Py( 0x00007fffff51a0b0, ), path: LookupPath( [ S( "host", Py( 0x00007fffff51a0b0, ), ), ], ), }, name_py: Py( 0x00007fffff51a0b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "port", lookup_key: Simple { key: "port", py_key: Py( 0x00007fffff51a130, ), path: LookupPath( [ S( "port", Py( 0x00007fffff51a130, ), ), ], ), }, name_py: Py( 0x00007fffff51a130, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "tls_timeout", lookup_key: Simple { key: "tls_timeout", py_key: Py( 0x00007fffe130cbf0, ), path: LookupPath( [ S( "tls_timeout", Py( 0x00007fffe130cbf0, ), ), ], ), }, name_py: Py( 0x00007fffe130cbf0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, ], model_name: "LeafNode", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true, }, ), class: Py( 0x0000555556cd1f60, ), post_init: None, frozen: false, custom_init: false, root_model: false, name: "LeafNode", }, ), name: "nullable[LeafNode]", }, ), validate_default: false, copy_default: false, name: "default[nullable[LeafNode]]", }, ), frozen: false, }, Field { name: "leafnodes", lookup_key: Simple { key: "leafnodes", py_key: Py( 0x00007fffe12478f0, ), path: LookupPath( [ S( "leafnodes", Py( 0x00007fffe12478f0, ), ), ], ), }, name_py: Py( 0x00007fffe12478f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "max_connections", lookup_key: Simple { key: "max_connections", py_key: Py( 0x00007fffe1247930, ), path: LookupPath( [ S( "max_connections", Py( 0x00007fffe1247930, ), ), ], ), }, name_py: Py( 0x00007fffe1247930, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "max_control_line", lookup_key: Simple { key: "max_control_line", py_key: Py( 0x00007fffe12422b0, ), path: LookupPath( [ S( "max_control_line", Py( 0x00007fffe12422b0, ), ), ], ), }, name_py: Py( 0x00007fffe12422b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "max_payload", lookup_key: Simple { key: "max_payload", py_key: Py( 0x00007fffe1247970, ), path: LookupPath( [ S( "max_payload", Py( 0x00007fffe1247970, ), ), ], ), }, name_py: Py( 0x00007fffe1247970, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "max_pending", lookup_key: Simple { key: "max_pending", py_key: Py( 0x00007fffe12479b0, ), path: LookupPath( [ S( "max_pending", Py( 0x00007fffe12479b0, ), ), ], ), }, name_py: Py( 0x00007fffe12479b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "mem", lookup_key: Simple { key: "mem", py_key: Py( 0x00007ffffd7cd4b0, ), path: LookupPath( [ S( "mem", Py( 0x00007ffffd7cd4b0, ), ), ], ), }, name_py: Py( 0x00007ffffd7cd4b0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "now", lookup_key: Simple { key: "now", py_key: Py( 0x00007ffffeb89eb0, ), path: LookupPath( [ S( "now", Py( 0x00007ffffeb89eb0, ), ), ], ), }, name_py: Py( 0x00007ffffeb89eb0, ), validator: Datetime( DateTimeValidator { strict: false, constraints: None, microseconds_precision: Truncate, }, ), frozen: false, }, Field { name: "out_bytes", lookup_key: Simple { key: "out_bytes", py_key: Py( 0x00007fffe12479f0, ), path: LookupPath( [ S( "out_bytes", Py( 0x00007fffe12479f0, ), ), ], ), }, name_py: Py( 0x00007fffe12479f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "out_msgs", lookup_key: Simple { key: "out_msgs", py_key: Py( 0x00007fffe1247a30, ), path: LookupPath( [ S( "out_msgs", Py( 0x00007fffe1247a30, ), ), ], ), }, name_py: Py( 0x00007fffe1247a30, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "ping_interval", lookup_key: Simple { key: "ping_interval", py_key: Py( 0x00007fffe1247a70, ), path: LookupPath( [ S( "ping_interval", Py( 0x00007fffe1247a70, ), ), ], ), }, name_py: Py( 0x00007fffe1247a70, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "ping_max", lookup_key: Simple { key: "ping_max", py_key: Py( 0x00007fffe1247ab0, ), path: LookupPath( [ S( "ping_max", Py( 0x00007fffe1247ab0, ), ), ], ), }, name_py: Py( 0x00007fffe1247ab0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "port", lookup_key: Simple { key: "port", py_key: Py( 0x00007fffff51a130, ), path: LookupPath( [ S( "port", Py( 0x00007fffff51a130, ), ), ], ), }, name_py: Py( 0x00007fffff51a130, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "proto", lookup_key: Simple { key: "proto", py_key: Py( 0x00007fffff6f45f0, ), path: LookupPath( [ S( "proto", Py( 0x00007fffff6f45f0, ), ), ], ), }, name_py: Py( 0x00007fffff6f45f0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "remotes", lookup_key: Simple { key: "remotes", py_key: Py( 0x00007fffe1247af0, ), path: LookupPath( [ S( "remotes", Py( 0x00007fffe1247af0, ), ), ], ), }, name_py: Py( 0x00007fffe1247af0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "routes", lookup_key: Simple { key: "routes", py_key: Py( 0x00007fffe1247b30, ), path: LookupPath( [ S( "routes", Py( 0x00007fffe1247b30, ), ), ], ), }, name_py: Py( 0x00007fffe1247b30, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "server_id", lookup_key: Simple { key: "server_id", py_key: Py( 0x00007fffe1247b70, ), path: LookupPath( [ S( "server_id", Py( 0x00007fffe1247b70, ), ), ], ), }, name_py: Py( 0x00007fffe1247b70, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "server_name", lookup_key: Simple { key: "server_name", py_key: Py( 0x00007fffe1247bb0, ), path: LookupPath( [ S( "server_name", Py( 0x00007fffe1247bb0, ), ), ], ), }, name_py: Py( 0x00007fffe1247bb0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "slow_consumers", lookup_key: Simple { key: "slow_consumers", py_key: Py( 0x00007fffe1247bf0, ), path: LookupPath( [ S( "slow_consumers", Py( 0x00007fffe1247bf0, ), ), ], ), }, name_py: Py( 0x00007fffe1247bf0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "start", lookup_key: Simple { key: "start", py_key: Py( 0x00007fffff929c30, ), path: LookupPath( [ S( "start", Py( 0x00007fffff929c30, ), ), ], ), }, name_py: Py( 0x00007fffff929c30, ), validator: Datetime( DateTimeValidator { strict: false, constraints: None, microseconds_precision: Truncate, }, ), frozen: false, }, Field { name: "subscriptions", lookup_key: Simple { key: "subscriptions", py_key: Py( 0x00007fffe1d94e30, ), path: LookupPath( [ S( "subscriptions", Py( 0x00007fffe1d94e30, ), ), ], ), }, name_py: Py( 0x00007fffe1d94e30, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "system_account", lookup_key: Simple { key: "system_account", py_key: Py( 0x00007fffe1247c30, ), path: LookupPath( [ S( "system_account", Py( 0x00007fffe1247c30, ), ), ], ), }, name_py: Py( 0x00007fffe1247c30, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "tls_timeout", lookup_key: Simple { key: "tls_timeout", py_key: Py( 0x00007fffe130cbf0, ), path: LookupPath( [ S( "tls_timeout", Py( 0x00007fffe130cbf0, ), ), ], ), }, name_py: Py( 0x00007fffe130cbf0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "total_connections", lookup_key: Simple { key: "total_connections", py_key: Py( 0x00007fffe1242300, ), path: LookupPath( [ S( "total_connections", Py( 0x00007fffe1242300, ), ), ], ), }, name_py: Py( 0x00007fffe1242300, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, Field { name: "uptime", lookup_key: Simple { key: "uptime", py_key: Py( 0x00007fffe1247c70, ), path: LookupPath( [ S( "uptime", Py( 0x00007fffe1247c70, ), ), ], ), }, name_py: Py( 0x00007fffe1247c70, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "version", lookup_key: Simple { key: "version", py_key: Py( 0x00007fffff8e3870, ), path: LookupPath( [ S( "version", Py( 0x00007fffff8e3870, ), ), ], ), }, name_py: Py( 0x00007fffff8e3870, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Str( StrValidator { strict: false, coerce_numbers_to_str: false, }, ), name: "nullable[str]", }, ), validate_default: false, copy_default: false, name: "default[nullable[str]]", }, ), frozen: false, }, Field { name: "write_deadline", lookup_key: Simple { key: "write_deadline", py_key: Py( 0x00007fffe1247cb0, ), path: LookupPath( [ S( "write_deadline", Py( 0x00007fffe1247cb0, ), ), ], ), }, name_py: Py( 0x00007fffe1247cb0, ), validator: WithDefault( WithDefaultValidator { default: Default( Py( 0x00007ffffff85420, ), ), on_error: Raise, validator: Nullable( NullableValidator { validator: Int( IntValidator { strict: false, }, ), name: "nullable[int]", }, ), validate_default: false, copy_default: false, name: "default[nullable[int]]", }, ), frozen: false, }, ], model_name: "Connection", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true, }, ), class: Py( 0x0000555556cd7530, ), post_init: None, frozen: false, custom_init: false, root_model: false, name: "Connection", }, ), definitions=[])[source]
- __rich_repr__()[source]
Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.
- __signature__: ClassVar[Signature] = <Signature (*, auth_timeout: Optional[int] = None, cluster: Optional[kittycad.models.cluster.Cluster] = None, config_load_time: datetime.datetime, connections: Optional[int] = None, cores: Optional[int] = None, cpu: Optional[float] = None, gateway: Optional[kittycad.models.gateway.Gateway] = None, git_commit: Optional[str] = None, go: Optional[str] = None, gomaxprocs: Optional[int] = None, host: str, http_base_path: Optional[str] = None, http_host: Optional[str] = None, http_port: Optional[int] = None, http_req_stats: Dict[str, int], https_port: Optional[int] = None, in_bytes: Optional[int] = None, in_msgs: Optional[int] = None, jetstream: Optional[kittycad.models.jetstream.Jetstream] = None, leaf: Optional[kittycad.models.leaf_node.LeafNode] = None, leafnodes: Optional[int] = None, max_connections: Optional[int] = None, max_control_line: Optional[int] = None, max_payload: Optional[int] = None, max_pending: Optional[int] = None, mem: Optional[int] = None, now: datetime.datetime, out_bytes: Optional[int] = None, out_msgs: Optional[int] = None, ping_interval: Optional[int] = None, ping_max: Optional[int] = None, port: Optional[int] = None, proto: Optional[int] = None, remotes: Optional[int] = None, routes: Optional[int] = None, server_id: Optional[str] = None, server_name: Optional[str] = None, slow_consumers: Optional[int] = None, start: datetime.datetime, subscriptions: Optional[int] = None, system_account: Optional[str] = None, tls_timeout: Optional[int] = None, total_connections: Optional[int] = None, uptime: Optional[str] = None, version: Optional[str] = None, write_deadline: Optional[int] = None) -> None>[source]
- __slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
- copy(*, include=None, exclude=None, update=None, deep=False)[source]
Returns a copy of the model.
- !!! warning “Deprecated”
This method is now deprecated; use model_copy instead.
If you need include or exclude, use:
`py data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `
- Parameters:
include (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to include in the copied model.
exclude (AbstractSetIntStr | MappingIntStrAny | None) – Optional set or mapping specifying which fields to exclude in the copied model.
update (Dict[str, Any] | None) – Optional dictionary of field-value pairs to override field values in the copied model.
deep (bool) – If True, the values of fields that are Pydantic models will be deep copied.
- Return type:
Model
- Returns:
A copy of the model with included, excluded and updated fields as specified.
- dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
- json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
- Return type:
- property model_computed_fields: dict[str, ComputedFieldInfo][source]
Get the computed fields of this model instance.
- Returns:
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}[source]
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- classmethod model_construct(_fields_set=None, **values)[source]
Creates a new instance of the Model class with validated data.
Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed. Behaves as if Config.extra = ‘allow’ was set since it adds all passed values
- model_copy(*, update=None, deep=False)[source]
Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#model_copy
Returns a copy of the model.
- model_dump(*, mode='python', include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]
Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump
Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.
- Parameters:
mode – The mode in which to_python should run. If mode is ‘json’, the dictionary will only contain JSON serializable types. If mode is ‘python’, the dictionary may contain any Python objects.
include – A list of fields to include in the output.
exclude – A list of fields to exclude from the output.
by_alias – Whether to use the field’s alias in the dictionary key if defined.
exclude_unset – Whether to exclude fields that have not been explicitly set.
exclude_defaults – Whether to exclude fields that are set to their default value from the output.
exclude_none – Whether to exclude fields that have a value of None from the output.
round_trip – Whether to enable serialization and deserialization round-trip support.
warnings – Whether to log warnings when invalid fields are encountered.
- Returns:
A dictionary representation of the model.
- model_dump_json(*, indent=None, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True)[source]
Usage docs: https://docs.pydantic.dev/2.5/concepts/serialization/#modelmodel_dump_json
Generates a JSON representation of the model using Pydantic’s to_json method.
- Parameters:
indent – Indentation to use in the JSON output. If None is passed, the output will be compact.
include – Field(s) to include in the JSON output. Can take either a string or set of strings.
exclude – Field(s) to exclude from the JSON output. Can take either a string or set of strings.
by_alias – Whether to serialize using field aliases.
exclude_unset – Whether to exclude fields that have not been explicitly set.
exclude_defaults – Whether to exclude fields that have the default value.
exclude_none – Whether to exclude fields that have a value of None.
round_trip – Whether to use serialization/deserialization between JSON and class instance.
warnings – Whether to show any warnings that occurred during serialization.
- Returns:
A JSON string representation of the model.
- property model_extra[source]
Get extra fields set during validation.
- Returns:
A dictionary of extra fields, or None if config.extra is not set to “allow”.
- model_fields: ClassVar[dict[str, FieldInfo]] = {'auth_timeout': FieldInfo(annotation=Union[int, NoneType], required=False), 'cluster': FieldInfo(annotation=Union[Cluster, NoneType], required=False), 'config_load_time': FieldInfo(annotation=datetime, required=True), 'connections': FieldInfo(annotation=Union[int, NoneType], required=False), 'cores': FieldInfo(annotation=Union[int, NoneType], required=False), 'cpu': FieldInfo(annotation=Union[float, NoneType], required=False), 'gateway': FieldInfo(annotation=Union[Gateway, NoneType], required=False), 'git_commit': FieldInfo(annotation=Union[str, NoneType], required=False), 'go': FieldInfo(annotation=Union[str, NoneType], required=False), 'gomaxprocs': FieldInfo(annotation=Union[int, NoneType], required=False), 'host': FieldInfo(annotation=str, required=True), 'http_base_path': FieldInfo(annotation=Union[str, NoneType], required=False), 'http_host': FieldInfo(annotation=Union[str, NoneType], required=False), 'http_port': FieldInfo(annotation=Union[int, NoneType], required=False), 'http_req_stats': FieldInfo(annotation=Dict[str, int], required=True), 'https_port': FieldInfo(annotation=Union[int, NoneType], required=False), 'in_bytes': FieldInfo(annotation=Union[int, NoneType], required=False), 'in_msgs': FieldInfo(annotation=Union[int, NoneType], required=False), 'jetstream': FieldInfo(annotation=Union[Jetstream, NoneType], required=False), 'leaf': FieldInfo(annotation=Union[LeafNode, NoneType], required=False), 'leafnodes': FieldInfo(annotation=Union[int, NoneType], required=False), 'max_connections': FieldInfo(annotation=Union[int, NoneType], required=False), 'max_control_line': FieldInfo(annotation=Union[int, NoneType], required=False), 'max_payload': FieldInfo(annotation=Union[int, NoneType], required=False), 'max_pending': FieldInfo(annotation=Union[int, NoneType], required=False), 'mem': FieldInfo(annotation=Union[int, NoneType], required=False), 'now': FieldInfo(annotation=datetime, required=True), 'out_bytes': FieldInfo(annotation=Union[int, NoneType], required=False), 'out_msgs': FieldInfo(annotation=Union[int, NoneType], required=False), 'ping_interval': FieldInfo(annotation=Union[int, NoneType], required=False), 'ping_max': FieldInfo(annotation=Union[int, NoneType], required=False), 'port': FieldInfo(annotation=Union[int, NoneType], required=False), 'proto': FieldInfo(annotation=Union[int, NoneType], required=False), 'remotes': FieldInfo(annotation=Union[int, NoneType], required=False), 'routes': FieldInfo(annotation=Union[int, NoneType], required=False), 'server_id': FieldInfo(annotation=Union[str, NoneType], required=False), 'server_name': FieldInfo(annotation=Union[str, NoneType], required=False), 'slow_consumers': FieldInfo(annotation=Union[int, NoneType], required=False), 'start': FieldInfo(annotation=datetime, required=True), 'subscriptions': FieldInfo(annotation=Union[int, NoneType], required=False), 'system_account': FieldInfo(annotation=Union[str, NoneType], required=False), 'tls_timeout': FieldInfo(annotation=Union[int, NoneType], required=False), 'total_connections': FieldInfo(annotation=Union[int, NoneType], required=False), 'uptime': FieldInfo(annotation=Union[str, NoneType], required=False), 'version': FieldInfo(annotation=Union[str, NoneType], required=False), 'write_deadline': FieldInfo(annotation=Union[int, NoneType], required=False)}[source]
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- property model_fields_set: set[str][source]
Returns the set of fields that have been explicitly set on this model instance.
- Returns:
- A set of strings representing the fields that have been set,
i.e. that were not filled from defaults.
- classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]
Generates a JSON schema for a model class.
- Parameters:
by_alias (
bool
) – Whether to use attribute aliases or not.ref_template (
str
) – The reference template.schema_generator (
type
[GenerateJsonSchema
]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modificationsmode (
Literal
['validation'
,'serialization'
]) – The mode in which to generate the schema.
- Return type:
- Returns:
The JSON schema for the given model class.
- classmethod model_parametrized_name(params)[source]
Compute the class name for parametrizations of generic classes.
This method can be overridden to achieve a custom naming scheme for generic BaseModels.
- Parameters:
params (
tuple
[type
[Any
],...
]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.- Return type:
- Returns:
String representing the new class where params are passed to cls as type variables.
- Raises:
TypeError – Raised when trying to generate concrete names for non-generic models.
- model_post_init(_BaseModel__context)[source]
Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.
- Return type:
- classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]
Try to rebuild the pydantic-core schema for the model.
This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.
- Parameters:
force – Whether to force the rebuilding of the model schema, defaults to False.
raise_errors – Whether to raise errors, defaults to True.
_parent_namespace_depth – The depth level of the parent namespace, defaults to 2.
_types_namespace – The types namespace, defaults to None.
- Returns:
Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.
- classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]
Validate a pydantic model instance.
- Parameters:
- Raises:
ValidationError – If the object could not be validated.
- Return type:
Model
- Returns:
The validated model instance.
- classmethod model_validate_json(json_data, *, strict=None, context=None)[source]
Usage docs: https://docs.pydantic.dev/2.5/concepts/json/#json-parsing
Validate the given JSON data against the Pydantic model.
- Parameters:
- Return type:
Model
- Returns:
The validated Pydantic model.
- Raises:
ValueError – If json_data is not a JSON string.
- classmethod model_validate_strings(obj, *, strict=None, context=None)[source]
Validate the given object contains string data against the Pydantic model.
- classmethod parse_file(cls, path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
- Return type:
Model
- classmethod parse_raw(cls, b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
- Return type:
Model