Skip to content

Commit

Permalink
Porting code from #104
Browse files Browse the repository at this point in the history
  • Loading branch information
kellrott committed Nov 11, 2021
1 parent 9575021 commit dbbca50
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions openapi/task_execution_service.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,31 @@ paths:
If unspecified, no task name filtering is done.
schema:
type: string
- name: state
description: |-
OPTIONAL. Filter tasks by state. If unspecified,
no task state filtering is done.
in: query
required: false
$ref: '#/components/schemas/tesState'
- name: tags
description: |-
OPTIONAL. Filter tasks by tag. If unspecified,
no task tag filtering is done. Both the tag's
key and value must be exact matches for a task to be returned.
Filter Tags Match?
----------------------------------------------------------------------
{"foo": "bar"} {"foo": "bar"} Yes
{"foo": ""} {"foo": ""} Yes
{"foo": "bar", "baz": "bat"} {"foo": "bar", "baz": "bat"} Yes
{"foo": "bar"} {"foo": "bar", "baz": "bat"} Yes
{"foo": "bar", "baz": "bat"} {"foo": "bar"} No
{"foo": ""} {"foo": "bar"} No
in: query
required: false
type: object
additionalProperties:
type: string
- name: page_size
in: query
description: |-
Expand Down Expand Up @@ -554,7 +579,7 @@ components:
backend_parameters_strict:
type: boolean
description: |-
If set to true, backends should fail the task if any backend_parameters
If set to true, backends should fail the task if any backend_parameters
key/values are unsupported, otherwise, backends should attempt to run the task
format: boolean
default: false
Expand Down Expand Up @@ -589,7 +614,7 @@ components:
tesResources_backend_parameters:
type: array
description: |-
Lists all tesResources.backend_parameters keys supported
Lists all tesResources.backend_parameters keys supported
by the service
items:
type: string
Expand Down

0 comments on commit dbbca50

Please sign in to comment.