File: http-status.yaml

package info (click to toggle)
python-os-api-ref 2.3.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 372 kB
  • sloc: python: 886; javascript: 501; makefile: 12
file content (63 lines) | stat: -rw-r--r-- 1,999 bytes parent folder | download | duplicates (4)
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
    200:
      default: |
        Request was successful.
      image-data-200: |
        The service lists the image data in the response body.
    201:
      default: |
        Request has been fulfilled and new resource created.
    202:
      default: |
        Request is accepted, but processing may take some time.
    203:
      default: |
        Returned information is not full set, but a subset.
    204:
      default: |
        Request fulfilled but service does not return anything.
    300:
      default: |
        The resource corresponds to more than one representation.
    400:
      default: |
        Some content in the request was invalid.
    401:
      default: |
        User must authenticate before making a request.
    403:
      default: |
        Policy does not allow current user to do this operation.
    404:
      default: |
        The requested resource could not be found.
    405:
      default: |
        Method is not valid for this endpoint and resource.
    409:
     default: |
        This resource has an action in progress that would conflict with this request.
    413:
      default: |
        This operation cannot be completed.
      image-data-413: |
        The payload cannot be accepted. Possible causes include:
        * The backend storage is full.
        * This request added to your existing image data exceeds your total
          storage quota for images.
        * The image payload submitted with this request exceeds the maximum
          allowable image size.
    415:
     default: |
        The entity of the request is in a format not supported by the requested
        resource for the method.
    500:
      default: |
        Something went wrong with the service which prevents it from fulfilling
        the request.
    501:
      default: |
        The service does not have the functionality required to fulfill this
        request.
    503:
      default: |
        The service cannot handle the request right now.