X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/107af77a83788ebdd0cbcfdcae91fed44deec11d..12cd1df493cc0da3c6ed90b467470b336a36b42b:/sdk/go/arvados/vocabulary.go diff --git a/sdk/go/arvados/vocabulary.go b/sdk/go/arvados/vocabulary.go index bb1bec789f..16f80db07d 100644 --- a/sdk/go/arvados/vocabulary.go +++ b/sdk/go/arvados/vocabulary.go @@ -29,14 +29,22 @@ type VocabularyTag struct { // Cannot have a constant map in Go, so we have to use a function func (v *Vocabulary) systemTagKeys() map[string]bool { return map[string]bool{ - "type": true, - "template_uuid": true, - "groups": true, - "username": true, - "image_timestamp": true, + // Collection keys - set by arvados-cwl-runner + "container_request": true, + "container_uuid": true, + "type": true, + // Collection keys - set by arv-keepdocker (on the way out) "docker-image-repo-tag": true, - "filters": true, - "container_request": true, + // Container request keys - set by arvados-cwl-runner + "cwl_input": true, + "cwl_output": true, + "template_uuid": true, + // Group keys + "filters": true, + // Link keys + "groups": true, + "image_timestamp": true, + "username": true, } }