You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `BAD_REQUEST` | 400 | The server cannot or will not process the request due to an apparent client error. |
268
-
| `UNAUTHENTICATED` | 401 | The client did not supply valid authentication credentials for this request. |
269
-
| `UNAUTHORIZED` | 403 | The caller does not have permission to execute the specified operation. |
270
-
| `NOT_FOUND` | 404 | The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible. |
271
-
| `RESOURCE_EXHAUSTED` | 429 | Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space. |
272
-
| `INTERNAL` | 500 | An internal error occured. |
273
-
| `NOT_IMPLEMENTED` | 501 | The server either does not recognize the request method, or it lacks the ability to fulfill the request. |
274
-
| `UNAVAILABLE` | 503 | The service is currently unavailable. |
275
-
| `UPSTREAM_TIMEOUT` | 520 | Used by gateways to report that a request to an upstream server has timed out. |
| `BAD_REQUEST` | 400 | The server cannot or will not process the request due to an apparent client error. Clients should not retry this request unless advised otherwise. |
264
+
| `UNAUTHENTICATED` | 401 | The client did not supply valid authentication credentials for this request. Clients should not retry this request unless advised otherwise. |
265
+
| | | |
266
+
| `UNAUTHORIZED` | 403 | The caller does not have permission to execute the specified operation. Clients should not retry this request unless advised otherwise. |
267
+
| | | |
268
+
| `NOT_FOUND` | 404 | The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible but not advised. |
269
+
| | | |
270
+
| `RESOURCE_EXHAUSTED` | 429 | Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space. Subsequent requests by the client are permissible. |
271
+
| `INTERNAL` | 500 | An internal error occured. Clients should not retry this request unless advised otherwise. |
272
+
| `NOT_IMPLEMENTED` | 501 | The server either does not recognize the request method, or it lacks the ability to fulfill the request. Clients should not retry this request unless advised otherwise. |
273
+
| `UNAVAILABLE` | 503 | The service is currently unavailable. Subsequent requests by the client are permissible. |
274
+
| `UPSTREAM_TIMEOUT` | 520 | Used by gateways to report that a request to an upstream server has timed out. Subsequent requests by the client are permissible. |
276
275
277
276
## General Purpose Headers
278
277
@@ -285,7 +284,14 @@ Handlers and callers can specify links in different Nexus requests to associate
285
284
286
285
Links must contain a `type` parameter that expresses how they should be parsed.
0 commit comments