-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherrors.yaml
110 lines (110 loc) · 3.53 KB
/
errors.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
errors:
"StatusRequestTimeoutError":
description: |
It indicates that the server did not receive a complete request
message within the time that it was prepared to wait.
grpc: 1
http: 408
temporary: true
reverse: true
"InternalServerError":
description: |
It indicates that the server encountered an unexpected
condition that prevented it from fulfilling the request.
grpc: 2
http: 500
temporary: false
reverse: true
"BadRequestError":
description: |
It indicates that the server cannot or will not process the
request due to something that is perceived to be a client error.
grpc: 3
http: 400
temporary: false
reverse: true
"StatusGatewayTimeoutError":
description: |
It indicates that the server, while acting as a gateway or
proxy, did not receive a timely response from an upstream
server it needed to access in order to complete the request.
grpc: 4
http: 504
temporary: true
reverse: true
"NotFoundError":
description: |
It indicates that the origin server did not find a current
representation for the target resource or is not willing to
disclose that one exists.
grpc: 5
http: 404
temporary: false
reverse: true
"ConflictError":
description: |
It indicates that the request could not be completed due to
a conflict with the current state of the target resource.
grpc: 6
http: 409
temporary: false
reverse: true
"ForbiddenError":
description: |
It indicates that the server understood the request but
refuses to fulfill it.
grpc: 7
http: 403
temporary: false
reverse: true
"UnauthorizedError":
description: |
It indicates that the request has not been applied because
it lacks valid authentication credentials for the target
resource.
grpc: 16
http: 401
temporary: false
reverse: true
"TooManyRequestsError":
description: |
It indicates the user has sent too many requests in a given
amount of time.
grpc: 8
http: 429
temporary: false
reverse: true
"RequestEntityTooLargeError":
description: |
It indicates that the server is refusing to process
a request because the request content is larger than
the server
grpc: 11
http: 413
temporary: false
reverse: true
"ServiceUnavailableError":
description: |
It indicates that the server is not ready to handle
the request.
grpc: 14
http: 503
temporary: true
reverse: true
"UnimplementedError":
description: |
It indicates that the server does not support
the functionality required to fulfill the request.
grpc: 12
http: 501
temporary: false
reverse: true
"UnsupportedMediaTypeError":
description: |
It indicates indicates that the origin server is refusing
to service the request because the content is in a format
not supported by this method on the target resource.
grpc: 3
http: 415
temporary: false
reverse: false