mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
etcdserverpb: add missing deleterange annotation
This commit is contained in:
parent
ec5c5d9ddf
commit
b4ce427d45
@ -33,7 +33,12 @@ service KV {
|
|||||||
// DeleteRange deletes the given range from the key-value store.
|
// DeleteRange deletes the given range from the key-value store.
|
||||||
// A delete request increments the revision of the key-value store
|
// A delete request increments the revision of the key-value store
|
||||||
// and generates a delete event in the event history for every deleted key.
|
// and generates a delete event in the event history for every deleted key.
|
||||||
rpc DeleteRange(DeleteRangeRequest) returns (DeleteRangeResponse) {}
|
rpc DeleteRange(DeleteRangeRequest) returns (DeleteRangeResponse) {
|
||||||
|
option (google.api.http) = {
|
||||||
|
post: "/v3alpha/kv/deleterange"
|
||||||
|
body: "*"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
// Txn processes multiple requests in a single transaction.
|
// Txn processes multiple requests in a single transaction.
|
||||||
// A txn request increments the revision of the key-value store
|
// A txn request increments the revision of the key-value store
|
||||||
|
Loading…
x
Reference in New Issue
Block a user