diff --git a/using-nats/developing-with-nats/js/kv.md b/using-nats/developing-with-nats/js/kv.md index 36b2237d..e7b4ff03 100644 --- a/using-nats/developing-with-nats/js/kv.md +++ b/using-nats/developing-with-nats/js/kv.md @@ -93,6 +93,17 @@ async def create_key_value( """ create_key_value takes an api.KeyValueConfig and creates a KV in JetStream. """ + +async def key_value( + self, + config: Optional[api.KeyValueConfig] = None, + **params, +) -> KeyValue: + """ + key_value retrieves the bucket with the passed name, if it exists + """ + + async def delete_key_value(self, bucket: str) -> bool: """