暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031
  1. syntax = "proto3";
  2. package google.api;
  3. message Http {
  4. repeated HttpRule rules = 1;
  5. }
  6. message HttpRule {
  7. oneof pattern {
  8. string get = 2;
  9. string put = 3;
  10. string post = 4;
  11. string delete = 5;
  12. string patch = 6;
  13. CustomHttpPattern custom = 8;
  14. }
  15. string selector = 1;
  16. string body = 7;
  17. repeated HttpRule additional_bindings = 11;
  18. }
  19. message CustomHttpPattern {
  20. string kind = 1;
  21. string path = 2;
  22. }