auth_sample.proto 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Copyright 2015 gRPC authors.
  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 grpc.testing;
  16. option objc_class_prefix = "AUTH";
  17. // Unary request.
  18. message Request {
  19. // Whether Response should include username.
  20. bool fill_username = 4;
  21. // Whether Response should include OAuth scope.
  22. bool fill_oauth_scope = 5;
  23. }
  24. // Unary response, as configured by the request.
  25. message Response {
  26. // The user the request came from, for verifying authentication was
  27. // successful.
  28. string username = 2;
  29. // OAuth scope.
  30. string oauth_scope = 3;
  31. }
  32. service TestService {
  33. // One request followed by one response.
  34. rpc UnaryCall(Request) returns (Response);
  35. }