Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / protobufjs / google / api / http.proto
1 syntax = "proto3";
2
3 package google.api;
4
5 message Http {
6
7     repeated HttpRule rules = 1;
8 }
9
10 message HttpRule {
11
12     oneof pattern {
13
14         string get = 2;
15         string put = 3;
16         string post = 4;
17         string delete = 5;
18         string patch = 6;
19         CustomHttpPattern custom = 8;
20     }
21
22     string selector = 1;
23     string body = 7;
24     repeated HttpRule additional_bindings = 11;
25 }
26
27 message CustomHttpPattern {
28
29     string kind = 1;
30     string path = 2;
31 }