Skip to content

Commit

Permalink
PATCH /services/{service_id} and PATCH /jobs/{job_id}: Explicitly…
Browse files Browse the repository at this point in the history
… allow updating back-end specific properties (as in `POST`)

`GET /services/{service_id}` and `GET /jobs/{job_id}`: Explicitly allow listing back-end specific properties (as provided in `POST`)
  • Loading branch information
m-mohr committed Jul 14, 2023
1 parent 814c386 commit 9555433
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- `GET /file_formats`: Base paramater on top of normal JSON Schema, not Process JSON Schema
- `PATCH /services/{service_id}` and `PATCH /jobs/{job_id}`: Explicitly allow updating back-end specific properties (as in `POST`)
- `GET /services/{service_id}` and `GET /jobs/{job_id}`: Explicitly allow listing back-end specific properties (as provided in `POST`)

## [1.2.0] - 2021-05-25

Expand Down
10 changes: 9 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2789,6 +2789,8 @@ paths:
$ref: '#/components/schemas/budget_update'
log_level:
$ref: '#/components/schemas/min_log_level_update'
additionalProperties:
description: You can add additional back-end specific properties here.
description: The data to change for the specified secondary web service.
get:
summary: Full metadata for a service
Expand All @@ -2810,7 +2812,9 @@ paths:
- configuration
- attributes
allOf:
- $ref: '#/components/schemas/service'
- $ref: '#/components/schemas/service'
additionalProperties:
description: You can list additional back-end specific properties here.
4XX:
$ref: '#/components/responses/client_error_auth'
5XX:
Expand Down Expand Up @@ -3017,6 +3021,8 @@ paths:
$ref: '#/components/schemas/budget_update'
log_level:
$ref: '#/components/schemas/min_log_level_update'
additionalProperties:
description: You can add additional back-end specific properties here.
description: Specifies the job details to update.
get:
summary: Full metadata for a batch job
Expand All @@ -3038,6 +3044,8 @@ paths:
- process
allOf:
- $ref: '#/components/schemas/batch_job'
additionalProperties:
description: You can list additional back-end specific properties here.
4XX:
$ref: '#/components/responses/client_error_auth'
5XX:
Expand Down

0 comments on commit 9555433

Please sign in to comment.