|
| 1 | +get: |
| 2 | + operationId: get-shared-parameter |
| 3 | + tags: [ shared-parameters ] |
| 4 | + summary: Get a specific shared parameter |
| 5 | + parameters: |
| 6 | + - $ref: '../parameters/Uuid.yaml' |
| 7 | + responses: |
| 8 | + 200: |
| 9 | + description: A shared parameter. |
| 10 | + content: |
| 11 | + application/json: |
| 12 | + schema: |
| 13 | + $ref: '../schemas/responses/SharedParameterResponse.yaml' |
| 14 | + 400: |
| 15 | + description: Bad Request. |
| 16 | + 401: |
| 17 | + description: Unauthorized. |
| 18 | + 403: |
| 19 | + description: Forbidden. |
| 20 | + 404: |
| 21 | + description: Not Found. |
| 22 | + 429: |
| 23 | + description: Too Many Requests. |
| 24 | + |
| 25 | +patch: |
| 26 | + operationId: update-shared-parameter |
| 27 | + tags: [ shared-parameters ] |
| 28 | + summary: Update shared parameter |
| 29 | + parameters: |
| 30 | + - $ref: '../parameters/Uuid.yaml' |
| 31 | + requestBody: |
| 32 | + required: true |
| 33 | + content: |
| 34 | + application/json: |
| 35 | + schema: |
| 36 | + $ref: '../schemas/SharedParameter.update.yaml' |
| 37 | + responses: |
| 38 | + 200: |
| 39 | + description: OK. |
| 40 | + content: |
| 41 | + application/json: |
| 42 | + schema: |
| 43 | + $ref: '../schemas/responses/UuidResponse.yaml' |
| 44 | + 400: |
| 45 | + description: Bad Request. |
| 46 | + 401: |
| 47 | + description: Unauthorized. |
| 48 | + 403: |
| 49 | + description: Forbidden. |
| 50 | + 404: |
| 51 | + description: Not Found. |
| 52 | + 429: |
| 53 | + description: Too Many Requests. |
| 54 | + |
| 55 | +delete: |
| 56 | + operationId: delete-shared-parameter |
| 57 | + tags: [ shared-parameters ] |
| 58 | + summary: Delete shared parameter along with all its usages in test cases and reviews. |
| 59 | + parameters: |
| 60 | + - $ref: '../parameters/Uuid.yaml' |
| 61 | + responses: |
| 62 | + 200: |
| 63 | + description: Success. |
| 64 | + content: |
| 65 | + application/json: |
| 66 | + schema: |
| 67 | + $ref: '../schemas/responses/UuidResponse.yaml' |
| 68 | + 400: |
| 69 | + description: Bad Request. |
| 70 | + 401: |
| 71 | + description: Unauthorized. |
| 72 | + 403: |
| 73 | + description: Forbidden. |
| 74 | + 404: |
| 75 | + description: Not Found. |
| 76 | + 429: |
| 77 | + description: Too Many Requests. |
0 commit comments