Class SerDeInfo (2.36.0)

SerDeInfo(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Serializer and deserializer information.

Attributes

Name Description
name str
Optional. Name of the SerDe. The maximum length is 256 characters.
serialization_library str
Required. Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
parameters MutableMapping[str, str]
Optional. Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.

Classes

ParametersEntry

ParametersEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The abstract base class for a message.

Parameters
Name Description
kwargs dict

Keys and values corresponding to the fields of the message.

mapping Union[dict, .Message]

A dictionary or message to be used to determine the values for this message.

ignore_unknown_fields Optional(bool)

If True, do not raise errors for unknown fields. Only applied if mapping is a mapping type or there are keyword parameters.