library_example_v1.yaml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. type: google.api.Service
  2. config_version: 3
  3. name: library-example.googleapis.com
  4. title: Example Library API
  5. apis:
  6. - name: google.example.library.v1.LibraryService
  7. documentation:
  8. summary: A simple Google Example Library API.
  9. overview: |-
  10. # Introduction
  11. This is a Google example service representing a simple digital library. It
  12. manages a collection of shelf resources, and each shelf owns a collection of
  13. book resources.
  14. backend:
  15. rules:
  16. - selector: google.example.library.v1.LibraryService.CreateShelf
  17. deadline: 10.0
  18. - selector: google.example.library.v1.LibraryService.GetShelf
  19. deadline: 10.0
  20. - selector: google.example.library.v1.LibraryService.ListShelves
  21. deadline: 10.0
  22. - selector: google.example.library.v1.LibraryService.DeleteShelf
  23. deadline: 10.0
  24. - selector: google.example.library.v1.LibraryService.MergeShelves
  25. deadline: 10.0
  26. - selector: google.example.library.v1.LibraryService.CreateBook
  27. deadline: 10.0
  28. - selector: google.example.library.v1.LibraryService.GetBook
  29. deadline: 10.0
  30. - selector: google.example.library.v1.LibraryService.ListBooks
  31. deadline: 10.0
  32. - selector: google.example.library.v1.LibraryService.DeleteBook
  33. deadline: 10.0
  34. - selector: google.example.library.v1.LibraryService.UpdateBook
  35. deadline: 10.0
  36. - selector: google.example.library.v1.LibraryService.MoveBook
  37. deadline: 10.0