Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove path_prefix from TES specification #195

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions openapi/task_execution_service.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,7 @@ components:
type: string
description: |-
URL at which the TES server makes the output accessible after the task is complete.
When tesOutput.path contains wildcards, it must be a directory; see
`tesOutput.path_prefix` for details on how output URLs are constructed in this case.
When tesOutput.path contains wildcards, it must be a directory.
For Example:
- `s3://my-object-store/file1`
- `gs://my-bucket/file2`
Expand All @@ -536,16 +535,9 @@ components:
description: |-
Absolute path of the file inside the container.
May contain pattern matching wildcards to select multiple outputs at once, but mind
implications for `tesOutput.url` and `tesOutput.path_prefix`.
implications for `tesOutput.url`.
Only wildcards defined in IEEE Std 1003.1-2017 (POSIX), 12.3 are supported; see
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_13
path_prefix:
type: string
description: |-
Prefix to be removed from matching outputs if `tesOutput.path` contains wildcards;
output URLs are constructed by appending pruned paths to the directory specfied
in `tesOutput.url`.
Required if `tesOutput.path` contains wildcards, ignored otherwise.
type:
$ref: '#/components/schemas/tesFileType'
description: Output describes Task output files.
Expand Down
Loading