GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
474 B

2 months ago
  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. }