TaskConfig.dhall 321 B

1234567891011121314151617
  1. { platform :
  2. Text
  3. , run :
  4. ./TaskRunConfig.dhall
  5. , image_resource :
  6. Optional ./ImageResource.dhall
  7. , rootfs_uri :
  8. Optional Text
  9. , inputs :
  10. Optional (List ./TaskInput.dhall)
  11. , outputs :
  12. Optional (List ./TaskOutput.dhall)
  13. , caches :
  14. Optional (List ./TaskCache.dhall)
  15. , params :
  16. Optional (List ./TextTextPair.dhall)
  17. }