status.proto 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // Copyright 2017 Google Inc.
  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.rpc;
  16. import "google/protobuf/any.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/rpc/status;status";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "StatusProto";
  20. option java_package = "com.google.rpc";
  21. option objc_class_prefix = "RPC";
  22. // The `Status` type defines a logical error model that is suitable for different
  23. // programming environments, including REST APIs and RPC APIs. It is used by
  24. // [gRPC](https://github.com/grpc). The error model is designed to be:
  25. //
  26. // - Simple to use and understand for most users
  27. // - Flexible enough to meet unexpected needs
  28. //
  29. // # Overview
  30. //
  31. // The `Status` message contains three pieces of data: error code, error message,
  32. // and error details. The error code should be an enum value of
  33. // [google.rpc.Code][google.rpc.Code], but it may accept additional error codes if needed. The
  34. // error message should be a developer-facing English message that helps
  35. // developers *understand* and *resolve* the error. If a localized user-facing
  36. // error message is needed, put the localized message in the error details or
  37. // localize it in the client. The optional error details may contain arbitrary
  38. // information about the error. There is a predefined set of error detail types
  39. // in the package `google.rpc` that can be used for common error conditions.
  40. //
  41. // # Language mapping
  42. //
  43. // The `Status` message is the logical representation of the error model, but it
  44. // is not necessarily the actual wire format. When the `Status` message is
  45. // exposed in different client libraries and different wire protocols, it can be
  46. // mapped differently. For example, it will likely be mapped to some exceptions
  47. // in Java, but more likely mapped to some error codes in C.
  48. //
  49. // # Other uses
  50. //
  51. // The error model and the `Status` message can be used in a variety of
  52. // environments, either with or without APIs, to provide a
  53. // consistent developer experience across different environments.
  54. //
  55. // Example uses of this error model include:
  56. //
  57. // - Partial errors. If a service needs to return partial errors to the client,
  58. // it may embed the `Status` in the normal response to indicate the partial
  59. // errors.
  60. //
  61. // - Workflow errors. A typical workflow has multiple steps. Each step may
  62. // have a `Status` message for error reporting.
  63. //
  64. // - Batch operations. If a client uses batch request and batch response, the
  65. // `Status` message should be used directly inside batch response, one for
  66. // each error sub-response.
  67. //
  68. // - Asynchronous operations. If an API call embeds asynchronous operation
  69. // results in its response, the status of those operations should be
  70. // represented directly using the `Status` message.
  71. //
  72. // - Logging. If some API errors are stored in logs, the message `Status` could
  73. // be used directly after any stripping needed for security/privacy reasons.
  74. message Status {
  75. // The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
  76. int32 code = 1;
  77. // A developer-facing error message, which should be in English. Any
  78. // user-facing error message should be localized and sent in the
  79. // [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
  80. string message = 2;
  81. // A list of messages that carry the error details. There is a common set of
  82. // message types for APIs to use.
  83. repeated google.protobuf.Any details = 3;
  84. }