Skip to main content

KeyValueStoreCollectionClient

Subclient for manipulating key-value stores.

Hierarchy

Index

Methods

__init__

  • __init__(*, memory_storage_client): None

get_or_create

  • Retrieve an existing key-value store by its name or ID, or create a new one if it does not exist.


    Parameters

    • optionalkeyword-onlyid: str | None = None

      Optional ID of the key-value store to retrieve or create. If provided, the method will attempt to find a key-value store with the ID.

    • optionalkeyword-onlyname: str | None = None

      Optional name of the key-value store resource to retrieve or create. If provided, the method will attempt to find a key-value store with this name.

    • optionalkeyword-onlyschema: dict | None = None

      Optional schema for the key-value store resource to be created.

    Returns KeyValueStoreMetadata

list

  • List the available key-value stores.


    Parameters

    • optionalkeyword-onlyunnamed: bool = False

      Whether to list only the unnamed key-value stores.

    • optionalkeyword-onlylimit: int | None = None

      Maximum number of key-value stores to return.

    • optionalkeyword-onlyoffset: int | None = None

      Number of key-value stores to skip from the beginning of the list.

    • optionalkeyword-onlydesc: bool = False

      Whether to sort the key-value stores in descending order.

    Returns KeyValueStoreListPage

Page Options