docs(proxy): state /key/bulk_update null handling as /key/update parity

This commit is contained in:
mateo-berri 2026-09-19 03:55:48 -07:00
parent b746ac4456
commit f982d3e046
2 changed files with 4 additions and 4 deletions

View file

@ -3519,8 +3519,8 @@ async def bulk_update_keys(
- tags: Optional[List[str]] - Tags for organizing keys
- object_permission: Optional[LiteLLM_ObjectPermissionBase] - key-specific object permission, as on /key/update
Only the fields an item carries are written: a field left out keeps its current value and an
explicit null clears it, the same as /key/update.
Only the fields an item carries are written: a field left out keeps its current value, and a field
sent explicitly, null included, is applied exactly as /key/update applies it.
Returns:
- total_requested: int - Total number of keys requested for update

View file

@ -7695,8 +7695,8 @@ export interface paths {
* - tags: Optional[List[str]] - Tags for organizing keys
* - object_permission: Optional[LiteLLM_ObjectPermissionBase] - key-specific object permission, as on /key/update
*
* Only the fields an item carries are written: a field left out keeps its current value and an
* explicit null clears it, the same as /key/update.
* Only the fields an item carries are written: a field left out keeps its current value, and a field
* sent explicitly, null included, is applied exactly as /key/update applies it.
*
* Returns:
* - total_requested: int - Total number of keys requested for update