client.proto 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. // Copyright 2018 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.api;
  16. import "google/protobuf/descriptor.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "ClientProto";
  20. option java_package = "com.google.api";
  21. option objc_class_prefix = "GAPI";
  22. extend google.protobuf.MethodOptions {
  23. // A definition of a client library method signature.
  24. //
  25. // In client libraries, each proto RPC corresponds to one or more methods
  26. // which the end user is able to call, and calls the underlying RPC.
  27. // Normally, this method receives a single argument (a struct or instance
  28. // corresponding to the RPC request object). Defining this field will
  29. // add one or more overloads providing flattened or simpler method signatures
  30. // in some languages.
  31. //
  32. // The fields on the method signature are provided as a comma-separated
  33. // string.
  34. //
  35. // For example, the proto RPC and annotation:
  36. //
  37. // rpc CreateSubscription(CreateSubscriptionRequest)
  38. // returns (Subscription) {
  39. // option (google.api.method_signature) = "name,topic";
  40. // }
  41. //
  42. // Would add the following Java overload (in addition to the method accepting
  43. // the request object):
  44. //
  45. // public final Subscription createSubscription(String name, String topic)
  46. //
  47. // The following backwards-compatibility guidelines apply:
  48. //
  49. // * Adding this annotation to an unannotated method is backwards
  50. // compatible.
  51. // * Adding this annotation to a method which already has existing
  52. // method signature annotations is backwards compatible if and only if
  53. // the new method signature annotation is last in the sequence.
  54. // * Modifying or removing an existing method signature annotation is
  55. // a breaking change.
  56. // * Re-ordering existing method signature annotations is a breaking
  57. // change.
  58. repeated string method_signature = 1051;
  59. }
  60. extend google.protobuf.ServiceOptions {
  61. // The hostname for this service.
  62. // This should be specified with no prefix or protocol.
  63. //
  64. // Example:
  65. //
  66. // service Foo {
  67. // option (google.api.default_host) = "foo.googleapi.com";
  68. // ...
  69. // }
  70. string default_host = 1049;
  71. // OAuth scopes needed for the client.
  72. //
  73. // Example:
  74. //
  75. // service Foo {
  76. // option (google.api.oauth_scopes) = \
  77. // "https://www.googleapis.com/auth/cloud-platform";
  78. // ...
  79. // }
  80. //
  81. // If there is more than one scope, use a comma-separated string:
  82. //
  83. // Example:
  84. //
  85. // service Foo {
  86. // option (google.api.oauth_scopes) = \
  87. // "https://www.googleapis.com/auth/cloud-platform,"
  88. // "https://www.googleapis.com/auth/monitoring";
  89. // ...
  90. // }
  91. string oauth_scopes = 1050;
  92. }