|
6 | 6 | */
|
7 | 7 | export enum StatusDescription {
|
8 | 8 | /**
|
9 |
| - * @description - StatusCode 100 |
| 9 | + * @description - StatusCode = 100 |
10 | 10 | */
|
11 | 11 | CONTINUE = "This interim response indicates that the client should continue the request or ignore the response if the request is already finished.",
|
12 | 12 | /**
|
@@ -206,47 +206,47 @@ export enum StatusDescription {
|
206 | 206 | */
|
207 | 207 | UNAVAILABLE_FOR_LEGAL_REASONS = "The user agent requested a resource that cannot legally be provided, such as a web page censored by a government.",
|
208 | 208 | /**
|
209 |
| - * @description - StatusCode 500 |
| 209 | + * @description - StatusCode = 500 |
210 | 210 | */
|
211 | 211 | INTERNAL_SERVER_ERROR = "The server has encountered a situation it does not know how to handle.",
|
212 | 212 | /**
|
213 |
| - * @description - StatusCode = |
| 213 | + * @description - StatusCode = 501 |
214 | 214 | */
|
215 | 215 | NOT_IMPLEMENTED = "The request method is not supported by the server and cannot be handled. The only methods that servers are required to support (and therefore that must not return this code) are GET and HEAD.",
|
216 | 216 | /**
|
217 |
| - * @description - StatusCode = |
| 217 | + * @description - StatusCode = 502 |
218 | 218 | */
|
219 | 219 | BAD_GATEWAY = "This error response means that the server, while working as a gateway to get a response needed to handle the request, got an invalid response.",
|
220 | 220 | /**
|
221 |
| - * @description - StatusCode = |
| 221 | + * @description - StatusCode = 503 |
222 | 222 | */
|
223 | 223 | SERVICE_UNAVAILABLE = "The server is not ready to handle the request. Common causes are a server that is down for maintenance or that is overloaded. Note that together with this response, a user-friendly page explaining the problem should be sent. This response should be used for temporary conditions and the Retry-After HTTP header should, if possible, contain the estimated time before the recovery of the service. The webmaster must also take care about the caching-related headers that are sent along with this response, as these temporary condition responses should usually not be cached.",
|
224 | 224 | /**
|
225 |
| - * @description - StatusCode = |
| 225 | + * @description - StatusCode = 504 |
226 | 226 | */
|
227 | 227 | GATEWAY_TIMEOUT = "This error response is given when the server is acting as a gateway and cannot get a response in time.",
|
228 | 228 | /**
|
229 |
| - * @description - StatusCode = |
| 229 | + * @description - StatusCode = 505 |
230 | 230 | */
|
231 | 231 | HTTP_VERSION_NOT_SUPPORTED = "The HTTP version used in the request is not supported by the server.",
|
232 | 232 | /**
|
233 |
| - * @description - StatusCode = |
| 233 | + * @description - StatusCode = 506 |
234 | 234 | */
|
235 | 235 | VARIANT_ALSO_NEGOTIATES = "The server has an internal configuration error: the chosen variant resource is configured to engage in transparent content negotiation itself, and is therefore not a proper end point in the negotiation process.",
|
236 | 236 | /**
|
237 |
| - * @description - StatusCode = |
| 237 | + * @description - StatusCode = 507 |
238 | 238 | */
|
239 | 239 | INSUFFICIENT_STORAGE = "The method could not be performed on the resource because the server is unable to store the representation needed to successfully complete the request.",
|
240 | 240 | /**
|
241 |
| - * @description - StatusCode = |
| 241 | + * @description - StatusCode = 508 |
242 | 242 | */
|
243 | 243 | LOOP_DETECTED = "The server detected an infinite loop while processing the request.",
|
244 | 244 | /**
|
245 |
| - * @description - StatusCode = |
| 245 | + * @description - StatusCode = 510 |
246 | 246 | */
|
247 | 247 | NOT_EXTENDED = "Further extensions to the request are required for the server to fulfill it.",
|
248 | 248 | /**
|
249 |
| - * @description - StatusCode = |
| 249 | + * @description - StatusCode = 511 |
250 | 250 | */
|
251 | 251 | NETWORK_AUTHENTICATION_REQUIRED = "Indicates that the client needs to authenticate to gain network access.",
|
252 | 252 | }
|
0 commit comments