docs: refresh gateway rpc safe-flow mirrors

This commit is contained in:
Peter Steinberger
2026-04-04 20:32:28 +01:00
parent 13396fa99e
commit 976bc47458
3 changed files with 15 additions and 1 deletions

View File

@@ -1460,6 +1460,8 @@ Notes:
Common RPCs:
- `config.schema.lookup` (inspect one config subtree with field docs)
- `config.get` (read current config snapshot + hash)
- `config.set` (validate + write full config; use `baseHash` for optimistic concurrency)
- `config.apply` (validate + write config + restart + wake)
- `config.patch` (merge a partial update + restart + wake)
@@ -1467,6 +1469,7 @@ Common RPCs:
Tip: when calling `config.set`/`config.apply`/`config.patch` directly, pass `baseHash` from
`config.get` if a config already exists.
Tip: for partial edits, inspect with `config.schema.lookup` first and prefer `config.patch`.
Tip: these config write RPCs preflight active SecretRef resolution for refs in the submitted config payload and reject writes when an effectively active submitted ref is unresolved.
## Models