Skip to main content

KeyValueStoreRecordDb

Records table for key-value stores.

Hierarchy

  • Base
    • KeyValueStoreRecordDb

Index

Properties

__tablename__

__tablename__: Undefined

content_type

content_type: Mapped[str]

MIME type for proper value deserialization.

key

key: Mapped[str]

The key part of the key-value pair.

key_value_store_id

key_value_store_id: Mapped[str]

Foreign key to metadata key-value store record.

kvs

size

size: Mapped[int | None]

Size of stored value in bytes.

storage_id

storage_id: Undefined

Alias for key_value_store_id to match SqlClientMixin expectations.

value

value: Mapped[bytes]

Value stored as binary data to support any content type.