class documentation

class LogsExportFormat(Enum): (source)

View In Hierarchy

Output file format for exported log data, chosen via --log-format.

Constant __PROTO_DESCRIPTOR__ Protobuf enum descriptor from the registry.
Constant __PROTO_FULL_NAME__ Fully qualified protobuf enum name.
Constant EXPORT_FORMAT_UNSUPPORTED Undocumented
Constant JSON_GZIP JSON lines (one JSON object per line) compressed with gzip. Written as .json.gz.
Constant PARQUET Apache Parquet. Written as .parquet.

Inherited from Enum:

Class Method get_descriptor Return the protobuf EnumDescriptor for this enum.
Constant __PB2_DESCRIPTOR__ Alias for code that expects a protobuf descriptor.
Constant __REGISTRY__ Registry for the enum and its descriptor.
Class Method _missing_ Represent unknown open-enum numbers without losing their value.
__PROTO_DESCRIPTOR__ = (source)

Protobuf enum descriptor from the registry.

Value
REGISTRY.enum_descriptor('nebius.logging.v1.LogsExportFormat')
__PROTO_FULL_NAME__: str = (source)

Fully qualified protobuf enum name.

Value
'nebius.logging.v1.LogsExportFormat'
EXPORT_FORMAT_UNSUPPORTED: int = (source)

Undocumented

Value
0
JSON_GZIP: int = (source)

JSON lines (one JSON object per line) compressed with gzip. Written as .json.gz.

Value
1

Apache Parquet. Written as .parquet.

Value
2